django-svelte-saas-starter
I design scalable, cloud-native web applications with robust backends and modern frontends.
Backend: Django, Django REST Framework, PostgreSQL, Celery
Stack:
| Decision | Rationale |
|---|---|
| PostgreSQL over MySQL | ACID compliance, advanced JSONB queries, better Django ORM support |
| Svelte over React | Compile-time optimization, smaller bundle, better performance |
| REST + GraphQL | REST for CRUD, GraphQL for complex nested queries |
| AWS ECS + RDS | Managed infrastructure, auto-scaling, reduced ops overhead |
# Clone
git clone https://github.com/azmat/repo.git
cd repo
# Start services
docker-compose up -d
# Run migrations
docker-compose exec backend python manage.py migrate
# Seed data
docker-compose exec backend python manage.py loaddata fixtures.json
# Access
# Backend: http://localhost:8000
# Frontend: http://localhost:5173