This is my Flask quick start template. Its based on Flask version 3 (I tested with v3.0.3).
It is a boilerplate/template for starting your new Flask project. For the frontend, you can use for eg. Tailwind CSS or Bootstrap. It uses SQLAlchemy ORM (but any other ORM or no ORM can be used).
First clone the repository
$ git clone https://github.com/DamianK/quickflask.git
Change directory to quickflask
$ cd quickflask
Create a virtual environment and install dependencies. For eg. with virtualenvwrapper:
on MacOS:
$ mkvirtualenv quickflask
$ workon quickflask
$ pip install -r requirements.txt
on Linux/Ubuntu/WSL:
$ virtualenv quickflask
$ source quickflask/quickflask/bin/activate
$ pip install -r requirements.txt
Start the development server
$ flask run
if you prefer, instead of the above it also runs with:
$ python manage.py runserver
That's it!
Navigate to http://127.0.0.1:5000/
and start your new project!
quickflask/
├── app/
│ ├── __init__.py
│ ├── main/
│ │ ├── forms.py
│ │ ├── __init__.py
│ │ └── views.py
│ ├── models/
│ ├── static/
│ │ ├── css/
│ │ ├── img/
│ │ └── js/
│ └── templates/
│ ├── common/
│ ├── error/
│ │ ├── 404.html
│ │ └── 500.html
│ └── main/
│ └── index.html
├── CHANGES
├── config.py
├── instance/
│ └── config.py
├── LICENSE
├── manage.py
├── README.md
├── requirements.txt
├── tests/
│ ├── __init__.py
│ └── test_main.py
└── wsgi.py
When you clone the repo, you'll notice that you will be missing the config.py file in instance folder. You will find an example_config.py file instead.
├── instance/
└── example_config.py
This is b'coz it should be set to be ignored in the .gitignore file. Infact everything except example_config.py is set to be ignored. This is where you will store the deployment/production configuration values. You don't want to accidently push this to Github. Rename the file to config.py after you clone the repo.
If available, the values in quickflask/instance/config.py
will override any config values set in tthe environment form quickflask/config.py
when environment is set to production
(it is set to development
by default).
The wsgi.py file uses production
as the environment. This file is to be used by WSGI servers such as Gunicorn.
You can also test production environment using manage.py
$ python manage.py runserver --env production
You'll find that there are .gitkeep
files in some folders. Git does not track empty folders. This is a convention used to preserve the folder structure. These files are not necessary and you can delete them if you want.
As mentioned earlier, manage.py has just one command runserver which is used to run the Flask development server instead of the flask run command.
It takes two optional parameters
-
env
- Environment to use while running server. Supportsproduction
,development
andtesting
out of the box. Default isdevelopment
. -
port
- Port to use while running server. Default is 5000.
Eg.
$ python manage.py runserver --env production --port 5566
Runs the server in production
environment on port 5566.
You can extend manage.py
to support additional commands, parameters etc.
quickflask is built in such a way that you can easily integrate extensions, blueprints, tests etc. The files are commented to help you out with this.
If you have any comments, suggestions or ideas to improve this, please contact me!