Skip to content

Commit b4eed2c

Browse files
committed
readme remove proj struct put gifs
1 parent aed68f7 commit b4eed2c

1 file changed

Lines changed: 18 additions & 83 deletions

File tree

README.md

Lines changed: 18 additions & 83 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,24 @@ A Flask application template with the boilerplate code already done for you.
1515
* Flask-Assets for asset management and SCSS compilation
1616
* Flask-Mail for sending emails
1717
* gzip compression
18-
* gulp autoreload for quick static page debugging
18+
* Redis Queue for handling asynchronous tasks
19+
* ZXCVBN password strength checker
1920

20-
## Extensions
21+
Home Page and Registering a User:
2122

22-
Other branches include even more features
23+
![home](home.gif "home") ![registering](register.gif "register")
2324

24-
* `admin-edit-static-pages`: allow administrators to edit static pages using the [ckeditor](http://ckeditor.com/) WYSIWYG editor
25+
Admin Homepage and Dashboard:
26+
27+
![admin](admin.gif "admin")
28+
29+
Admin Editing Page and Admin Editing Users
30+
31+
![edit page](editpage.gif "editpage") ![edit user](edituser.gif "edituser")
32+
33+
Admin adding a user:
34+
35+
![add user](adduser.gif "add user")
2536

2637
## Setting up
2738

@@ -49,10 +60,10 @@ $ xcode-select --install
4960
##### Add Environment Variables
5061

5162
Create a file called `.env` that contains environment variables in the following syntax: `ENVIRONMENT_VARIABLE=value`. For example,
52-
the mailing environment variables can be set as the following
63+
the mailing environment variables can be set as the following. We recommend using Sendgrid for a mailing SMTP server. But anything else will work as well.
5364
```
54-
MAIL_USERNAME=example@domain.com
55-
MAIL_PASSWORD=SuperSecretPassword
65+
MAIL_USERNAME=SendgridUsername
66+
MAIL_PASSWORD=SendgridPassword
5667
SECRET_KEY=SuperRandomStringToBeUsedForEncryption
5768
```
5869
**Note: do not include the `.env` file in any commits. This should remain private.**
@@ -115,82 +126,6 @@ $ foreman start -f Local
115126

116127
Before you submit changes to flask-base, you may want to auto format your code with `python manage.py format`.
117128

118-
## Project Structure
119-
120-
121-
```
122-
├── Procfile
123-
├── README.md
124-
├── app
125-
│   ├── __init__.py
126-
│   ├── account
127-
│   │   ├── __init__.py
128-
│   │   ├── forms.py
129-
│   │   └── views.py
130-
│   ├── admin
131-
│   │   ├── __init__.py
132-
│   │   ├── forms.py
133-
│   │   └── views.py
134-
│   ├── assets
135-
│   │   ├── scripts
136-
│   │   │   ├── app.js
137-
│   │   │   └── vendor
138-
│   │   │   ├── jquery.min.js
139-
│   │   │   ├── semantic.min.js
140-
│   │   │   └── tablesort.min.js
141-
│   │   └── styles
142-
│   │   ├── app.scss
143-
│   │   └── vendor
144-
│   │   └── semantic.min.css
145-
│   ├── assets.py
146-
│   ├── decorators.py
147-
│   ├── email.py
148-
│   ├── main
149-
│   │   ├── __init__.py
150-
│   │   ├── errors.py
151-
│   │   ├── forms.py
152-
│   │   └── views.py
153-
│   ├── models.py
154-
│   ├── static
155-
│   │   ├── fonts
156-
│   │   │   └── vendor
157-
│   │   ├── images
158-
│   │   └── styles
159-
│   │      └── app.css
160-
│   ├── templates
161-
│   │   ├── account
162-
│   │   │   ├── email
163-
│   │   │   ├── login.html
164-
│   │   │   ├── manage.html
165-
│   │   │   ├── register.html
166-
│   │   │   ├── reset_password.html
167-
│   │   │   └── unconfirmed.html
168-
│   │   ├── admin
169-
│   │   │   ├── index.html
170-
│   │   │   ├── manage_user.html
171-
│   │   │   ├── new_user.html
172-
│   │   │   └── registered_users.html
173-
│   │   ├── errors
174-
│   │   ├── layouts
175-
│   │   │   └── base.html
176-
│   │   ├── macros
177-
│   │   │   ├── form_macros.html
178-
│   │   │   └── nav_macros.html
179-
│   │   ├── main
180-
│   │   │   └── index.html
181-
│   │   └── partials
182-
│   │   ├── _flashes.html
183-
│   │   └── _head.html
184-
│   └── utils.py
185-
├── config.py
186-
├── manage.py
187-
├── requirements
188-
│   ├── common.txt
189-
│   └── dev.txt
190-
└── tests
191-
├── test_basics.py
192-
└── test_user_model.py
193-
```
194129

195130
## Contributing
196131

0 commit comments

Comments
 (0)