File tree Expand file tree Collapse file tree 4 files changed +0
-7
lines changed Expand file tree Collapse file tree 4 files changed +0
-7
lines changed Original file line number Diff line number Diff line change 7
7
from django .utils .translation import gettext_lazy as _
8
8
from speckenv import env
9
9
from speckenv_django import (
10
- django_cache_url ,
11
10
django_database_url ,
12
11
django_email_url ,
13
12
django_storage_url ,
31
30
SERVER_EMAIL = DEFAULT_FROM_EMAIL = "[email protected] "
32
31
33
32
DATABASES = {"default" : django_database_url (env ("DATABASE_URL" , required = True ))}
34
- CACHES = {"default" : django_cache_url (env ("CACHE_URL" , required = True ))}
35
33
DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField"
36
34
37
35
SECRET_KEY = env ("SECRET_KEY" , required = True )
Original file line number Diff line number Diff line change 1
1
# Only used for building
2
2
DEBUG=False
3
3
DATABASE_URL=postgres://localhost:5432/postgres
4
- CACHE_URL=hiredis://localhost:6379/1/
5
4
SECRET_KEY=unsafe
6
5
ALLOWED_HOSTS=["*", ".localhost"]
Original file line number Diff line number Diff line change @@ -5,9 +5,7 @@ django-debug-toolbar
5
5
django-ratelimit
6
6
django>=5.1b1
7
7
granian
8
- hiredis
9
8
polib
10
9
psycopg[binary]
11
- redis
12
10
sentry-sdk
13
11
speckenv
Original file line number Diff line number Diff line change @@ -12,13 +12,11 @@ django-canonical-domain==0.9.2
12
12
django-debug-toolbar == 4.4.2
13
13
django-ratelimit == 4.1.0
14
14
granian == 1.4.4
15
- hiredis == 2.3.2
16
15
idna == 3.7
17
16
oauthlib == 3.2.2
18
17
polib == 1.2.0
19
18
psycopg == 3.2.1
20
19
psycopg-binary == 3.2.1
21
- redis == 5.1.0b7
22
20
requests == 2.32.3
23
21
requests-oauthlib == 2.0.0
24
22
sentry-sdk == 2.7.1
You can’t perform that action at this time.
0 commit comments