Create flask app is very similar to dijango-create-project / npx create-react-app.
cd to your working folder - (the folder you want to create your app). python(3) path-to-folder/create-flask-app
- This project create a app template for getting started with api in 0 time.
- It comes with Docker-file to build image and setup CI/CD.
- It also creates virtual env, Install packages(Globally).
- This setup is for SQL projects (Nosql support - contribution needed).
- It comes with DB migration file(migrate.py) to migrate databases(flask-migrate, flask-sqlalchemy).
- It creates blueprints directory(traditionally known as views).
- It auto generate secret key for app.
- It auto generate requirements.txt
Contribution to this project is welcomed.