Skip to content
Snippets Groups Projects
Commit 1c92ba7a authored by Steven Loria's avatar Steven Loria
Browse files

update READMEs

parent 581ce4d9
No related branches found
No related tags found
No related merge requests found
...@@ -11,11 +11,11 @@ Features ...@@ -11,11 +11,11 @@ Features
- Twitter Bootstrap 3 and starter templates - Twitter Bootstrap 3 and starter templates
- Flask-SQLAlchemy with basic User model - Flask-SQLAlchemy with basic User model
- Flask-WTForms with login and registration forms - Flask-WTForms with login and registration forms
- Flask-Login for authentication
- Procfile for deploying to a PaaS (e.g. Heroku) - Procfile for deploying to a PaaS (e.g. Heroku)
- Flask-Testing and nose for testing - Flask-Testing and nose for testing
- A simple ``manage.py`` script. - A simple ``manage.py`` script.
- CSS and JS minification using Flask-Assets - CSS and JS minification using Flask-Assets
- Easily switch between development and production environments through the MYFLASKAPP_ENV system variable.
- Utilizes best practices: `Blueprints <http://flask.pocoo.org/docs/blueprints/>`_ and `Application Factory <http://flask.pocoo.org/docs/patterns/appfactories/>`_ patterns - Utilizes best practices: `Blueprints <http://flask.pocoo.org/docs/blueprints/>`_ and `Application Factory <http://flask.pocoo.org/docs/patterns/appfactories/>`_ patterns
Screenshots Screenshots
...@@ -50,6 +50,7 @@ Inspiration ...@@ -50,6 +50,7 @@ Inspiration
- `Getting Bigger with Flask <http://maximebf.com/blog/2012/11/getting-bigger-with-flask/>`_ - `Getting Bigger with Flask <http://maximebf.com/blog/2012/11/getting-bigger-with-flask/>`_
- `Structuring Flask Apps <http://charlesleifer.com/blog/structuring-flask-apps-a-how-to-for-those-coming-from-django/>`_ - `Structuring Flask Apps <http://charlesleifer.com/blog/structuring-flask-apps-a-how-to-for-those-coming-from-django/>`_
- `Flask-Foundation <https://github.com/JackStouffer/Flask-Foundation>`_ by `@JackStouffer <https://github.com/JackStouffer>`_ - `Flask-Foundation <https://github.com/JackStouffer/Flask-Foundation>`_ by `@JackStouffer <https://github.com/JackStouffer>`_
- `flask-bones <https://github.com/cburmeister/flask-bones>`_ by `@cburmeister <https://github.com/cburmeister>`_
- `flask-basic-registration <https://github.com/mjhea0/flask-basic-registration>`_ by `@mjhea0 <https://github.com/mjhea0>`_ - `flask-basic-registration <https://github.com/mjhea0/flask-basic-registration>`_ by `@mjhea0 <https://github.com/mjhea0>`_
- `Flask Official Documentation <http://flask.pocoo.org/docs/>`_ - `Flask Official Documentation <http://flask.pocoo.org/docs/>`_
...@@ -64,9 +65,10 @@ Changelog ...@@ -64,9 +65,10 @@ Changelog
0.3.0 0.3.0
***** *****
- More "divisional" organization: each blueprint contains its own view, models, and forms in a directory. There is still a single directory for templates and static assets. - "Divisional" organization: each blueprint contains its own view, models, and forms in a directory. There is still a single directory for templates and static assets.
- Use Flask-Bcrypt for password hashing. - Use Flask-Bcrypt for password hashing.
- Flask-Testing support. - Flask-Testing support.
- Flask-Login for authentication.
0.2.0 (09/21/2013) 0.2.0 (09/21/2013)
****************** ******************
......
...@@ -13,9 +13,8 @@ Quickstart ...@@ -13,9 +13,8 @@ Quickstart
git clone https://github.com/{{cookiecutter.github_username}}/{{ cookiecutter.repo_name }} git clone https://github.com/{{cookiecutter.github_username}}/{{ cookiecutter.repo_name }}
cd {{cookiecutter.repo_name}} cd {{cookiecutter.repo_name}}
pip install -r requirements/dev.txt pip install -r requirements/dev.txt
export {{cookiecutter.repo_name|upper}}_ENV='dev'
python manage.py createdb python manage.py createdb
python manage.py runserver python manage.py server
Shell Shell
...@@ -25,17 +24,4 @@ To open the interactive shell, run :: ...@@ -25,17 +24,4 @@ To open the interactive shell, run ::
python manage.py shell python manage.py shell
By default, you will have access to ``app``, ``models``, and ``db``. By default, you will have access to ``app`` and ``db``.
Development / Production Environments
-------------------------------------
Configuration environements are handled through the {{cookiecutter.repo_name|upper}}_ENV system environment variable.
To switch to the development environment, set ::
export {{cookiecutter.repo_name|upper}}_ENV="dev"
To switch to the production environment, set ::
export {{cookiecutter.repo_name|upper}}_ENV="prod"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment