20 lines
No EOL
502 B
TypeScript
Executable file
20 lines
No EOL
502 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'
|
|
},
|
|
admin_token: 'ADMIN_TOKEN',
|
|
cookies:{
|
|
key1: 'COOKIE_KEY_1',
|
|
key2: 'COOKIE_KEY_2'
|
|
}
|
|
} |