Split production dependecies & update production configuration

This commit is contained in:
Sonny Bakker 2023-06-28 19:38:44 +02:00
parent 0f66c5eb9b
commit 5a73707d61
12 changed files with 68 additions and 111 deletions

View file

@ -7,7 +7,6 @@ requires-python = '>=3.11'
dependencies = [
'django~=3.2',
'celery~=4.4',
'gunicorn~=20.0',
'psycopg2',
'django-axes',
@ -19,8 +18,6 @@ dependencies = [
'python-memcached',
'python-dotenv~=0.12',
'sentry-sdk~=1.0',
'ftfy~=5.8',
'requests',
@ -49,3 +46,5 @@ development = [
]
ci = ['coverage>=5.3.1']
production = ['gunicorn~=20.0', 'sentry-sdk~=1.0']