- 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
6 lines
137 B
Python
6 lines
137 B
Python
from django.apps import AppConfig
|
|
|
|
class ApiConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'api'
|