Skip to content

Commit

Permalink
fix(start-stack): allow erasing project on localhost (DEV-4422) (#1338)
Browse files Browse the repository at this point in the history
  • Loading branch information
jnussbaum authored Dec 12, 2024
1 parent c797d78 commit 0783bde
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/dsp_tools/resources/start-stack/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ services:
# on the verge of every deployment (fortnightly), update the "image" value from the "app" value of
# https://github.com/dasch-swiss/ops-deploy/blob/main/versions/RELEASE.json
image: daschswiss/dsp-app:v11.22.1
volumes:
- ./dsp-app-config.json:/public/config/config.prod.json
ports:
- "4200:4200"

Expand Down
26 changes: 26 additions & 0 deletions src/dsp_tools/resources/start-stack/dsp-app-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"dspRelease": "localhost",
"apiProtocol": "http",
"apiHost": "0.0.0.0",
"apiPort": 3333,
"apiPath": "",
"iiifProtocol": "http",
"iiifHost": "0.0.0.0",
"iiifPort": 1024,
"iiifPath": "",
"ingestUrl": "http://0.0.0.0:3340",
"geonameToken": "knora",
"jsonWebToken": "",
"logErrors": false,
"iriBase": "http://rdfh.ch",
"instrumentation": {
"environment": "production",
"rollbar": {
"enabled": false,
"accessToken": ""
}
},
"featureFlags": {
"allowEraseProjects": true
}
}

0 comments on commit 0783bde

Please sign in to comment.