A simple REST API built with Flask and database migration support.
- RESTful API endpoints
- Database migrations via Flask-Migrate (Alembic)
- Seed data support
- Flask (Python)
- Flask-Migrate
- SQLAlchemy
git clone https://github.com/albertguedes/python-flask-api.git
cd python-flask-api
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
# Database setup
flask db init
flask db migrate -m "Create initial models"
flask db upgrade
# Seed data
python seeds/seed.py
flask runMIT License - see LICENSE