A cli tool to bootstrap your flask draft project in a few seconds.
You can install this tool by pip:
$ pip3 install git+https://github.com/kevinxuv/flask-bootstrap
After install, run flask-boot
in your terminal or console:
$ cd /tmp # cd to your project's workspace
$ flask-boot # run this cmd
$ -> Give your flask project a name [unknown]: test
$ -> Give a description for your flask project [none]: test
$ -> Init git or not? [False]: yes
$ Start to bootstrap project...
$ Finish bootstrap project test at /private/tmp/test
Then you will see your created flask draft project in your folder:
test
├── README.md
└── test
├── __init__.py
├── settings.py
└── wsgi.py
1 directory, 4 files
And you can run this flask project by flask
cli:
$ cd /tmp/test # cd to your project dir
$ export FLASK_APP=test.wsgi:app && flask run
$ * Serving Flask app "test.wsgi:app"
$ * Environment: production
$ WARNING: This is a development server. Do not use it in a production deployment.
$ Use a production WSGI server instead.
$ * Debug mode: off
$ * Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
Now, get ready to add more features to it, have fun.