Python Flask application with a Postgresql database exposing a REST API
BucketList is a web application designed to help one to record, edit, update activities one desires to accomplish before reaching a certain age. This application exposes a rest API which can be consumed
This is deployed on heroku with a base url http://descartes-bucketlist.herokuapp.com/
These are instructions on how to set up the application on a local development machine.
git clone https://github.com/Descartess/BucketList-REST-API.git
pip install -r requirements.txt
DATABASE_URL
and DATABASE_TEST_URL
python manage.py runserver
# This is done for only the initial installation
python manage.py recreate_db
The API documentation can be found at http://descartes-bucketlist.herokuapp.com/apidocs/
http://localhost:5000/apidocs/
To run tests
nosetests tests
```