Is a Flask web based API project.
Run the following command to do so:
- Clone the project from git on your system
- cd
contacts-management-flask-apis - Create a virtual environment and activate it
- Install site-packages by using following command:
pip install requirements.txt - Run
python manage.py db initto initiate migrations. It will create a directory named "migrations" - Run
python manage.py db upgradeto apply the migrations to the database. - Run
python manage.py runto execute the flask app server.
- Run
python mange.py test