File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 121
121
# Anymail
122
122
# ------------------------------------------------------------------------------
123
123
# https://anymail.readthedocs.io/en/stable/installation/#installing-anymail
124
- INSTALLED_APPS += ["anymail" ] # noqa: F405
124
+ # INSTALLED_APPS += ["anymail"] # noqa: F405
125
125
# https://docs.djangoproject.com/en/dev/ref/settings/#email-backend
126
126
# https://anymail.readthedocs.io/en/stable/installation/#anymail-settings-reference
127
127
# https://anymail.readthedocs.io/en/stable/esps/mailgun/
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ boto3==1.28
14
14
rich==13.5
15
15
pydantic<2.0 # Less than 2.0 because of django pydantic field
16
16
django-pydantic-field==0.2.11
17
+ sentry_sdk==1.39.2
17
18
18
19
# Django
19
20
# ------------------------------------------------------------------------------
Original file line number Diff line number Diff line change @@ -2,7 +2,12 @@ version: "3"
2
2
3
3
volumes :
4
4
ami_local_postgres_data : {}
5
- ami_local_postgres_data_backups : {}
5
+ ami_local_postgres_data_backups :
6
+ driver : local
7
+ driver_opts :
8
+ type : none
9
+ device : ./backups/postgres
10
+ o : bind
6
11
7
12
services :
8
13
django : &django
@@ -20,7 +25,7 @@ services:
20
25
volumes :
21
26
- .:/app:z
22
27
env_file :
23
- - ./.envs/.local /.django
28
+ - ./.envs/.production /.django
24
29
- ./.envs/.local/.postgres
25
30
ports :
26
31
- ' 8080:8000'
You can’t perform that action at this time.
0 commit comments