chatbridge/server/config/custom-environment-variables.ts
ansible user/allowed to read system logs eb2752c4e0 Working version of whole form
2023-07-27 19:35:39 -07:00

25 lines
652 B
TypeScript
Executable file

export default {
port: 'PORT',
postgresConfig: {
host: 'POSTGRES_HOST',
port: 'POSTGRES_PORT',
username: 'POSTGRES_USER',
password: 'POSTGRES_PASSWORD',
database: 'POSTGRES_DB',
},
slackConfig: {
client_id: 'SLACK_CLIENT_ID',
client_secret: 'SLACK_CLIENT_SECRET',
signing_secret: 'SLACK_SIGNING_SECRET',
state_secret: 'SLACK_STATE_SECRET'
},
admin_token: 'ADMIN_TOKEN',
cookies:{
key1: 'COOKIE_KEY_1',
key2: 'COOKIE_KEY_2'
},
matterbridge: {
bin: 'MATTERBRIDGE_BINARY',
config: 'MATTERBRIDGE_CONFIG_DIR'
}
}