Commit c902ba6 1 parent 5780a36 commit c902ba6 Copy full SHA for c902ba6
File tree 8 files changed +11
-11
lines changed
src/openarchiefbeheer/conf
8 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 36
36
npm ci --legacy-peer-deps
37
37
CI=false npm run build
38
38
env :
39
- REACT_APP_API_URL : " http://localhost:8080 "
39
+ REACT_APP_API_URL : " http://localhost:8000 "
40
40
41
41
- uses : actions/upload-artifact@v4
42
42
with :
Original file line number Diff line number Diff line change @@ -112,5 +112,5 @@ LABEL org.label-schema.vcs-ref=$COMMIT_HASH \
112
112
RUN python src/manage.py collectstatic --noinput \
113
113
&& python src/manage.py compilemessages
114
114
115
- EXPOSE 8080
115
+ EXPOSE 8000
116
116
CMD ["/start.sh" ]
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export PGPORT=${DB_PORT:-5432}
9
9
10
10
fixtures_dir=${FIXTURES_DIR:-/ app/ fixtures}
11
11
12
- uwsgi_port=${UWSGI_PORT:- 8080 }
12
+ uwsgi_port=${UWSGI_PORT:- 8000 }
13
13
uwsgi_processes=${UWSGI_PROCESSES:- 4}
14
14
uwsgi_threads=${UWSGI_THREADS:- 1}
15
15
Original file line number Diff line number Diff line change 1
1
DISABLE_2FA=yes
2
2
3
3
ALLOWED_HOSTS=localhost
4
- CORS_ALLOWED_ORIGINS=http://localhost:8080 ,http://localhost:3000
4
+ CORS_ALLOWED_ORIGINS=http://localhost:8000 ,http://localhost:3000
5
5
CSRF_TRUSTED_ORIGINS=http://localhost:3000
6
6
CSRF_COOKIE_SAMESITE='None'
7
7
CSRF_COOKIE_SECURE=False
Original file line number Diff line number Diff line change 20
20
from .base import * # noqa isort:skip
21
21
22
22
# End-to-end test settings
23
- E2E_PORT = config ("E2E_PORT" , default = 8080 )
23
+ E2E_PORT = config ("E2E_PORT" , default = 8000 )
24
24
E2E_SERVE_FRONTEND = config ("E2E_SERVE_FRONTEND" , default = False )
25
25
26
26
CACHES .update (
Original file line number Diff line number Diff line change 95
95
)
96
96
97
97
# End-to-end test settings
98
- E2E_PORT = config ("E2E_PORT" , default = 8080 )
98
+ E2E_PORT = config ("E2E_PORT" , default = 8000 )
99
99
E2E_SERVE_FRONTEND = config ("E2E_SERVE_FRONTEND" , default = False )
100
100
101
101
# Playwright settings
Original file line number Diff line number Diff line change @@ -33,8 +33,8 @@ services:
33
33
- DB_HOST=db
34
34
- CACHE_DEFAULT=redis:6379/0
35
35
- CACHE_AXES=redis:6379/0
36
- - CORS_ALLOWED_ORIGINS=http://localhost:9000,http://localhost:8080
37
- - CSRF_TRUSTED_ORIGINS=http://localhost:9000,http://localhost:8080
36
+ - CORS_ALLOWED_ORIGINS=http://localhost:9000,http://localhost:8000
37
+ - CSRF_TRUSTED_ORIGINS=http://localhost:9000,http://localhost:8000
38
38
- CSRF_COOKIE_SAMESITE=none
39
39
- CSRF_COOKIE_SECURE=False
40
40
- SESSION_COOKIE_SAMESITE=none
@@ -44,11 +44,11 @@ services:
44
44
- CELERY_BROKER_URL=redis://redis:6379/0
45
45
- CELERY_RESULT_BACKEND=redis://redis:6379/0
46
46
- CELERY_LOGLEVEL=DEBUG
47
- - REACT_APP_API_URL=http://localhost:8080
47
+ - REACT_APP_API_URL=http://localhost:8000
48
48
- REACT_APP_API_PATH=/api/v1
49
49
- REACT_APP_ZAAK_URL_TEMPLATE=https://www.example.com/zaken/{identificatie}
50
50
ports :
51
- - 8080:8080
51
+ - 8000:8000
52
52
depends_on :
53
53
- db
54
54
- redis
Original file line number Diff line number Diff line change 3
3
server_name localhost;
4
4
5
5
location ~ ^/admin|static|assets|api/ {
6
- proxy_pass http://web:8080 ;
6
+ proxy_pass http://web:8000 ;
7
7
proxy_set_header Host $http_host;
8
8
}
9
9
You can’t perform that action at this time.
0 commit comments