inventaire: add map tiles, analytics, and media storage configuration

This commit is contained in:
maxlath
2025-02-27 22:39:16 +01:00
parent b4d42a83e5
commit 0d17fb551d
2 changed files with 38 additions and 1 deletions

View File

@@ -17,7 +17,6 @@ module.exports = {
orgName: '${ORG_NAME}',
orgUrl: '${ORG_URL}',
contactAddress: '${CONTACT_ADDRESS}',
db: {
username: '${COUCHDB_USER}',
password: '${COUCHDB_PASSWORD}',
@@ -37,6 +36,24 @@ module.exports = {
},
},
},
mapTilesAccessToken: '${MAP_TILES_ACCESS_TOKEN}',
matomo: {
enabled: ${MOTOMO_ENABLED},
endpoint: '${MOTOMO_ENDPOINT}',
idsite: ${MOTOMO_IDSITE},
rec: ${MOTOMO_REC},
},
mediaStorage: {
mode: '${MEDIA_STORAGE_MODE}',
swift: {
username: '${SWIFT_USERNAME}',
password: '${SWIFT_PASSWORD}',
authUrl: '${SWIFT_AUTH_URL}',
publicURL: '${SWIFT_PUBLIC_URL}',
tenantName: '${SWIFT_TENANT_NAME}',
region: '${SWIFT_REGION}',
},
},
}
EOF