Skip to content

Commit c5cbc4a

Browse files
committed
Add development build and docker image tag
1 parent 9daed7d commit c5cbc4a

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.env.development

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# Development environment (uses CORS proxy)
1+
# Development environment
2+
PUBLIC_URL=http://localhost
23
REACT_APP_AUTH_TYPE=lighthouse
3-
REACT_APP_AUTH_SERVER_URL=http://localhost:8010
4-
REACT_APP_MODEL_SERVER_URL=wss://lighthouse.uni-kiel.de/staging/websocket
4+
REACT_APP_AUTH_SERVER_URL=http://localhost/api
5+
REACT_APP_MODEL_SERVER_URL=ws://localhost/websocket

.github/workflows/docker.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717
label: latest
1818
- env: staging
1919
label: staging
20+
- env: development
21+
label: development
2022

2123
steps:
2224
- uses: actions/checkout@v4

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
"start": "craco start",
2828
"start:legacy": "env-cmd -f .env.legacy craco start",
2929
"build": "craco build",
30+
"build:development": "env-cmd -f .env.development craco build",
3031
"build:staging": "env-cmd -f .env.staging craco build",
3132
"build:production": "env-cmd -f .env.production craco build",
3233
"test": "craco test",

0 commit comments

Comments
 (0)