todo list api project
The project is developed using python flask framework.
It demonstrates:
- Creating a REST API
- Securing the endpoints using web tokens.
- Using SQLALCHEMY to connect & interact with the database.
- Test Driven Development (TDD)
- Use of Continuous integration tool to automate buld and deployment.
- Applicaton will be deployed in Heroku cloud platform.
Setting up the Application.
Application developed with Python 3.5.3
Create a virtual environnment in the project directory with the command
virtualenv flask
This creates a virtual environment named 'flask'
I have create a file named requirements.txt that has python and flask extensions needed to be installed for the project
run the command: flask\Scripts\pip install -r requirements.txt to install the packages (windows)