deployable-flask-API
- To create the database:
- Get inside flask shell
- Import the database
from src.database import db
- Create the database from columns:
db.create_all()
- To check if it's all good, try:
db
- If you want to delete the database, use:
db.drop_all()
- Project available at https://flaskbookmarker-api.herokuapp.com/