This project is a Flask API interface for front-end development and practice, it supports auth, events and todos.
In order to execute this web application install the Python requirements.
>>> pip install -r requirements.txt
This application uses Flask_Migrate to perform database migrations. export the FLASK_APP environment variable with the value, run.py, then initialize your database.
>>> flask db init
After you need to migrate your models
>>> flask db migrate
and finally to upgrade your model schemas to the database.
>>> flask db upgrade
heroku run python manage.py db migrate --app app-name
After you have setup correctly your database, the only thing to do next, is tu run your application.
>>> flask run
You will find the api documentation in a Swagger UI in the following url
http://localhost:5000/api/docs
If you liked this, donate to the cause.
Copyright (c) 2020-present, Nelson Carrasquel