git clone
pip install -r requirements.txt
gedit config.py
#Add and save your database details
python migrate.py db init
python migrate.py db migrate
python migrate.py db upgrade
python run.py
-
GET https://localhost:5000/api/v1/users.json Returns a list of all users
-
POST https://localhost:5000/api/v1/users.json Creates a user and returns with user id
-
GET https://localhost:5000/api/v1/users/\<user_id>.json Returns user details for the given user id if the it exists