update READMEs

master
Steven Loria 11 years ago
parent 581ce4d981
commit 1c92ba7a1b
  1. 6
      README.rst
  2. 18
      {{cookiecutter.repo_name}}/README.rst

@ -11,11 +11,11 @@ Features
- Twitter Bootstrap 3 and starter templates
- Flask-SQLAlchemy with basic User model
- Flask-WTForms with login and registration forms
- Flask-Login for authentication
- Procfile for deploying to a PaaS (e.g. Heroku)
- Flask-Testing and nose for testing
- A simple ``manage.py`` script.
- 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
Screenshots
@ -50,6 +50,7 @@ Inspiration
- `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/>`_
- `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 Official Documentation <http://flask.pocoo.org/docs/>`_
@ -64,9 +65,10 @@ Changelog
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.
- Flask-Testing support.
- Flask-Login for authentication.
0.2.0 (09/21/2013)
******************

@ -13,9 +13,8 @@ Quickstart
git clone https://github.com/{{cookiecutter.github_username}}/{{ cookiecutter.repo_name }}
cd {{cookiecutter.repo_name}}
pip install -r requirements/dev.txt
export {{cookiecutter.repo_name|upper}}_ENV='dev'
python manage.py createdb
python manage.py runserver
python manage.py server
Shell
@ -25,17 +24,4 @@ To open the interactive shell, run ::
python manage.py shell
By default, you will have access to ``app``, ``models``, 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"
By default, you will have access to ``app`` and ``db``.

Loading…
Cancel
Save