Skip to content

Commit 80cc6a3

Browse files
ci: Add SITE_URL to settings_local for sandbox (ietf-tools#7112)
1 parent 3ddd8c9 commit 80cc6a3

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

dev/deploy-to-container/cli.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ async function main () {
6767
.replace('__DBHOST__', `dt-db-${branch}`)
6868
.replace('__SECRETKEY__', nanoid(36))
6969
.replace('__MQCONNSTR__', `amqp://datatracker:${mqKey}@dt-mq-${branch}/dt`)
70+
.replace('__HOSTNAME__', hostname)
7071
)
7172
await fs.copy(path.join(basePath, 'docker/scripts/app-create-dirs.sh'), path.join(releasePath, 'app-create-dirs.sh'))
7273
await fs.copy(path.join(basePath, 'dev/deploy-to-container/start.sh'), path.join(releasePath, 'start.sh'))

dev/deploy-to-container/settings_local.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,3 +69,6 @@
6969
SLIDE_STAGING_PATH = '/test/staging/'
7070

7171
DE_GFM_BINARY = '/usr/local/bin/de-gfm'
72+
73+
# OIDC configuration
74+
SITE_URL = 'https://__HOSTNAME__'

0 commit comments

Comments
 (0)