This is a template for new Flask projects.
# Clone this repo
git clone https://github.com/osmannyildiz/FlaskBoilerplate.git
# Rename the folder and enter it
mv FlaskBoilerplate flask_boilerplate && cd flask_boilerplate
# Create virtual environment and activate it
python -m venv env && source env/bin/activate
# Install the requirements
pip install -r requirements.txt
# Initialize your .env file with the example
cp .env.example .env
# Run the project
flask run
# Enjoy :)