- Clone this repository to your local machine
git clone https://github.com/antoniogodoy17/flask-todo-api.git
cd flask-todo-api
- Install requirements
cd api
pip install -r requirements.txt
- Create your .env file with the following variables
JWT_SECRET_KEY='Some secret phrase'
DB_URL='your mongo db url'
- Run Flask server (by default is running on port 8080)
python3 api.py