Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fengsp/flask-application-wizard
Helper script to create Flask Applications
https://github.com/fengsp/flask-application-wizard
Last synced: 3 days ago
JSON representation
Helper script to create Flask Applications
- Host: GitHub
- URL: https://github.com/fengsp/flask-application-wizard
- Owner: fengsp
- License: other
- Created: 2014-05-14T02:40:03.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-07-25T09:40:39.000Z (over 9 years ago)
- Last Synced: 2023-08-01T06:21:45.360Z (over 1 year ago)
- Language: Python
- Homepage: http://flask.pocoo.org/
- Size: 121 KB
- Stars: 16
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
README
Flask Application Wizard
========================A script that can generate Flask Applications, inspired by
https://github.com/mitsuhiko/flask-extension-wizard. Just make
sure to have Flask installed before running that script. It will
prompt you for a few things and then generate the basic stuff.If you have Sphinx installed, it can create Sphinx documentation.
(It will automatically set up the Sphinx themes as a Git submodule
if you are using Git.)If you have Git or Mercurial installed, it can initialize a
repository, and add a link to the development version if you plan
to host it on Github, Gitorious, or Bitbucket.By default, applications are listed as BSD licensed, but you can
select the MIT license or use a different license by selecting
"none" when the wizard asks.Installation with a fresh virtualenv:
$ virtualenv env
$ . env/bin/activate
$ pip install Flask Sphinx
$ python make-flaskapp.pyThen follow the instructions.