Basic Flask backend that has CRUD (Create, Read, Update, Delete) endpoints for a User that is stored in a Mongo Database
Deployed version can be found at https://zothacks-2020-fundamentals.herokuapp.com/
- Create and activate your Python Virtual Environment
$ python3 -m venv env $ source env/bin/activate
- Install the project dependencies
$ pip3 install -r requirements.txt
- Run the project without a debugger attached
$ python3 app.py
- Check Postman Collection for Endpoint Documentation