feat: complete Phase 3 scaffolding (templates, static, Docker, per-app skeletons)
- Per-app skeleton completion: property/client/setting now have services/,
tasks.py, views.py, urls.py, serializers.py, templates/<app>/, tests/
- admin.py added to all 10 apps (per spec §2.108 / §17.3)
- Top-level templates/: base.html, layouts/{app,auth}.html, components/
{topbar,sidebar,pagination,toast,modal,empty-state}.html, errors/
{403,404,500}.html
- static/: css/main.css (Tailwind entry), js/main.js (HTMX toast +
CSRF wiring per §7.4), vendor/.gitkeep
- tailwind.config.js: Primary teal + neutral slate + semantic colors,
Inter font stack, z-60/z-70, shadow-xs, slide-in-right animation per
UI_SYSTEM §2.7/§10.1
- package.json: tailwindcss-only build/watch
- Dockerfile + docker-compose.yml (6 services: web/db/redis/celery/
celery-beat/tailwind) + docker-compose.prod.yml + Makefile
- tests/ root: conftest.py with TenantClient fixture per §720,
integration/{property,client,release}/, e2e/, schemathesis skeleton
- Removed empty apps/tenant/models/ (tenant uses models.py per §17.1)
Validated: manage.py check passes; tree matches spec §2 exactly.
This commit is contained in:
0
apps/account/admin.py
Normal file
0
apps/account/admin.py
Normal file
0
apps/client/admin.py
Normal file
0
apps/client/admin.py
Normal file
0
apps/client/serializers.py
Normal file
0
apps/client/serializers.py
Normal file
0
apps/client/services/__init__.py
Normal file
0
apps/client/services/__init__.py
Normal file
0
apps/client/tasks.py
Normal file
0
apps/client/tasks.py
Normal file
0
apps/client/templates/client/.gitkeep
Normal file
0
apps/client/templates/client/.gitkeep
Normal file
0
apps/client/tests/__init__.py
Normal file
0
apps/client/tests/__init__.py
Normal file
5
apps/client/urls.py
Normal file
5
apps/client/urls.py
Normal file
@@ -0,0 +1,5 @@
|
||||
from django.urls import path
|
||||
|
||||
app_name = "client"
|
||||
|
||||
urlpatterns: list = []
|
||||
0
apps/client/views.py
Normal file
0
apps/client/views.py
Normal file
0
apps/complex/admin.py
Normal file
0
apps/complex/admin.py
Normal file
0
apps/org/admin.py
Normal file
0
apps/org/admin.py
Normal file
0
apps/permission/admin.py
Normal file
0
apps/permission/admin.py
Normal file
0
apps/property/admin.py
Normal file
0
apps/property/admin.py
Normal file
0
apps/property/serializers.py
Normal file
0
apps/property/serializers.py
Normal file
0
apps/property/services/__init__.py
Normal file
0
apps/property/services/__init__.py
Normal file
0
apps/property/tasks.py
Normal file
0
apps/property/tasks.py
Normal file
0
apps/property/templates/property/.gitkeep
Normal file
0
apps/property/templates/property/.gitkeep
Normal file
0
apps/property/tests/__init__.py
Normal file
0
apps/property/tests/__init__.py
Normal file
5
apps/property/urls.py
Normal file
5
apps/property/urls.py
Normal file
@@ -0,0 +1,5 @@
|
||||
from django.urls import path
|
||||
|
||||
app_name = "property"
|
||||
|
||||
urlpatterns: list = []
|
||||
0
apps/property/views.py
Normal file
0
apps/property/views.py
Normal file
0
apps/region/admin.py
Normal file
0
apps/region/admin.py
Normal file
0
apps/release/admin.py
Normal file
0
apps/release/admin.py
Normal file
0
apps/release/tests/__init__.py
Normal file
0
apps/release/tests/__init__.py
Normal file
0
apps/setting/admin.py
Normal file
0
apps/setting/admin.py
Normal file
0
apps/setting/serializers.py
Normal file
0
apps/setting/serializers.py
Normal file
0
apps/setting/services/__init__.py
Normal file
0
apps/setting/services/__init__.py
Normal file
0
apps/setting/tasks.py
Normal file
0
apps/setting/tasks.py
Normal file
0
apps/setting/templates/setting/.gitkeep
Normal file
0
apps/setting/templates/setting/.gitkeep
Normal file
0
apps/setting/tests/__init__.py
Normal file
0
apps/setting/tests/__init__.py
Normal file
5
apps/setting/urls.py
Normal file
5
apps/setting/urls.py
Normal file
@@ -0,0 +1,5 @@
|
||||
from django.urls import path
|
||||
|
||||
app_name = "setting"
|
||||
|
||||
urlpatterns: list = []
|
||||
0
apps/setting/views.py
Normal file
0
apps/setting/views.py
Normal file
0
apps/tenant/admin.py
Normal file
0
apps/tenant/admin.py
Normal file
0
apps/tenant/tests/__init__.py
Normal file
0
apps/tenant/tests/__init__.py
Normal file
Reference in New Issue
Block a user