
- Set up project structure with FastAPI application - Implement SQLAlchemy models for users, services, projects, team members, contacts - Create API endpoints for website functionality - Implement JWT authentication system with user roles - Add file upload functionality for media - Configure CORS and health check endpoints - Add database migrations with Alembic - Create comprehensive README with setup instructions
14 lines
347 B
Plaintext
14 lines
347 B
Plaintext
Generic single-database configuration with SQLite.
|
|
|
|
This is a generic migration management setup for SQLAlchemy using Alembic.
|
|
Changes to models in app/models/ should be reflected in migrations by running:
|
|
|
|
```
|
|
alembic revision --autogenerate -m "description of changes"
|
|
```
|
|
|
|
To apply migrations to the database, run:
|
|
|
|
```
|
|
alembic upgrade head
|
|
``` |