Initialize Fonrey Django multi-tenant project skeleton
Set up the required directory layout, app scaffolding, core settings, templates, static assets, and Docker/Tailwind tooling to establish a standardized development baseline.
This commit is contained in:
16
requirements/base.txt
Normal file
16
requirements/base.txt
Normal file
@@ -0,0 +1,16 @@
|
||||
Django==4.2.16
|
||||
django-tenants==3.7.0
|
||||
psycopg2-binary==2.9.9
|
||||
django-redis==5.4.0
|
||||
celery==5.4.0
|
||||
django-celery-beat==2.7.0
|
||||
django-celery-results==2.5.1
|
||||
django-storages[s3]==1.14.4
|
||||
boto3==1.35.0
|
||||
cryptography==43.0.0
|
||||
whitenoise==6.8.2
|
||||
gunicorn==23.0.0
|
||||
uvicorn[standard]==0.32.0
|
||||
sentry-sdk[django]==2.18.0
|
||||
python-decouple==3.8
|
||||
Pillow==11.0.0
|
||||
6
requirements/development.txt
Normal file
6
requirements/development.txt
Normal file
@@ -0,0 +1,6 @@
|
||||
-r base.txt
|
||||
ruff==0.7.0
|
||||
black==24.10.0
|
||||
pytest-django==4.9.0
|
||||
factory-boy==3.3.1
|
||||
django-debug-toolbar==4.4.6
|
||||
1
requirements/production.txt
Normal file
1
requirements/production.txt
Normal file
@@ -0,0 +1 @@
|
||||
-r base.txt
|
||||
Reference in New Issue
Block a user