Commit 75ad436 1 parent be44e40 commit 75ad436 Copy full SHA for 75ad436
File tree 5 files changed +28
-9
lines changed
5 files changed +28
-9
lines changed Original file line number Diff line number Diff line change @@ -105,4 +105,4 @@ RUN python src/manage.py collectstatic --noinput \
105
105
# && python src/manage.py warm_cache
106
106
107
107
EXPOSE 8000
108
- CMD ["/start.sh" ]
108
+ CMD ["/start.sh" ]
Original file line number Diff line number Diff line change 2
2
3
3
# Helpers
4
4
pip-tools
5
+ gitpython
5
6
6
7
# Debug tooling
7
8
django-debug-toolbar
Original file line number Diff line number Diff line change @@ -399,6 +399,10 @@ gemma-zds-client==1.0.1
399
399
# commonground-api-common
400
400
# notifications-api-common
401
401
# zgw-consumers
402
+ gitdb==4.0.11
403
+ # via gitpython
404
+ gitpython==3.1.42
405
+ # via -r requirements/dev.in
402
406
glom==23.5.0
403
407
# via
404
408
# -c requirements/ci.txt
@@ -700,6 +704,8 @@ six==1.16.0
700
704
# python-dateutil
701
705
# requests-mock
702
706
# url-normalize
707
+ smmap==5.0.1
708
+ # via gitdb
703
709
snowballstemmer==2.2.0
704
710
# via
705
711
# -c requirements/ci.txt
Original file line number Diff line number Diff line change 16
16
17
17
os .environ .setdefault ("ENVIRONMENT" , "development" )
18
18
19
+ os .environ .setdefault ("RELEASE" , "dev" )
20
+
19
21
from .base import * # noqa isort:skip
20
22
21
23
# Feel free to switch dev to sqlite3 for simple projects,
Original file line number Diff line number Diff line change 81
81
[
82
82
" zgw_consumers" ,
83
83
" nlxconfig"
84
- ],
85
- [
86
- " zgw_consumers" ,
87
- " service"
88
84
]
89
85
]
90
86
}
108
104
" auth" ,
109
105
" group"
110
106
],
111
- [
112
- " token" ,
113
- " tokenauth"
114
- ],
115
107
[
116
108
" mozilla_django_oidc_db" ,
117
109
" openidconnectconfig"
118
110
]
119
111
]
120
112
}
121
113
},
114
+ {
115
+ "model" : " admin_index.appgroup" ,
116
+ "fields" : {
117
+ "order" : 2 ,
118
+ "translations" : {
119
+ "en" : " API auth" ,
120
+ "nl" : " API auth"
121
+ },
122
+ "name" : " API auth" ,
123
+ "slug" : " api-auth" ,
124
+ "models" : [
125
+ [
126
+ " token" ,
127
+ " tokenauth"
128
+ ]
129
+ ]
130
+ }
131
+ },
122
132
{
123
133
"model" : " admin_index.appgroup" ,
124
134
"fields" : {
You can’t perform that action at this time.
0 commit comments