Skip to content

Commit 75ad436

Browse files
committed
🐛 added missing version
1 parent be44e40 commit 75ad436

File tree

5 files changed

+28
-9
lines changed

5 files changed

+28
-9
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,4 +105,4 @@ RUN python src/manage.py collectstatic --noinput \
105105
# && python src/manage.py warm_cache
106106

107107
EXPOSE 8000
108-
CMD ["/start.sh"]
108+
CMD ["/start.sh"]

requirements/dev.in

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
# Helpers
44
pip-tools
5+
gitpython
56

67
# Debug tooling
78
django-debug-toolbar

requirements/dev.txt

+6
Original file line numberDiff line numberDiff line change
@@ -399,6 +399,10 @@ gemma-zds-client==1.0.1
399399
# commonground-api-common
400400
# notifications-api-common
401401
# zgw-consumers
402+
gitdb==4.0.11
403+
# via gitpython
404+
gitpython==3.1.42
405+
# via -r requirements/dev.in
402406
glom==23.5.0
403407
# via
404408
# -c requirements/ci.txt
@@ -700,6 +704,8 @@ six==1.16.0
700704
# python-dateutil
701705
# requests-mock
702706
# url-normalize
707+
smmap==5.0.1
708+
# via gitdb
703709
snowballstemmer==2.2.0
704710
# via
705711
# -c requirements/ci.txt

src/openklant/conf/dev.py

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616

1717
os.environ.setdefault("ENVIRONMENT", "development")
1818

19+
os.environ.setdefault("RELEASE", "dev")
20+
1921
from .base import * # noqa isort:skip
2022

2123
# Feel free to switch dev to sqlite3 for simple projects,

src/openklant/fixtures/default_admin_index.json

+18-8
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,6 @@
8181
[
8282
"zgw_consumers",
8383
"nlxconfig"
84-
],
85-
[
86-
"zgw_consumers",
87-
"service"
8884
]
8985
]
9086
}
@@ -108,17 +104,31 @@
108104
"auth",
109105
"group"
110106
],
111-
[
112-
"token",
113-
"tokenauth"
114-
],
115107
[
116108
"mozilla_django_oidc_db",
117109
"openidconnectconfig"
118110
]
119111
]
120112
}
121113
},
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+
},
122132
{
123133
"model": "admin_index.appgroup",
124134
"fields": {

0 commit comments

Comments
 (0)