https://github.com/imiric/flask-scaffold
Base Flask project
https://github.com/imiric/flask-scaffold
Last synced: 10 months ago
JSON representation
Base Flask project
- Host: GitHub
- URL: https://github.com/imiric/flask-scaffold
- Owner: imiric
- Created: 2012-09-02T18:18:49.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2012-11-06T00:09:51.000Z (over 13 years ago)
- Last Synced: 2025-02-22T18:17:26.023Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 97.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Flask scaffold
==============
This is a simple skeleton project to help you get started quickly with Flask.
It defines the directory structure and a convenient configuration setup.
Requirements:
* Flask
* Fabric
Installation
------------
1. Create your virtualenv.
2. Clone this repo and run `pip install -r requirements.txt`.
3. [Generate your secret key](http://flask.pocoo.org/docs/quickstart/) and put it in
settings.py.
4. (Optional) Change all instances of `webapp` to suit your app's name.
* Rename webapp directory.
* Change `webapp` in fabfile.py.
* Change `webapp` in __init__.py.
* Change `Webapp` in settings.py.