- Python 3.3 or higher
# cloning the repo
$ git clone https://github.com/valanm22/micro-project.git
# move to the project folder
$ cd micro-project
# creating venv
$ python3 -m venv your_env_name
# activating the venv
$ source your_env_name/bin/activate
# installing the required packages
$ pip install -r requirements.txt
# exporting app to environment variable
$ export FLASK_APP=run.py
# mentioning environment type
$ export FLASK_ENV=development
# running app
$ flask run