Complete backend API and deployment guide

- Django REST API with lobster endpoints
- API views: list, detail, memory, tools
- Deployment guide with instructions
- Startup script for easy launch
- Requirements.txt for dependencies
- API URL routing
This commit is contained in:
2026-04-01 20:52:03 +08:00
parent 5386db423a
commit 4be901b1b0
9 changed files with 349 additions and 0 deletions

5
code/backend/api/apps.py Normal file
View File

@@ -0,0 +1,5 @@
from django.apps import AppConfig
class ApiConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'api'