chatbridge/config/custom-environment-variables.ts

11 lines
265 B
TypeScript
Raw Normal View History

2023-07-25 01:40:22 +00:00
export default {
port: 'PORT',
postgresConfig: {
host: 'POSTGRES_HOST',
port: 'POSTGRES_PORT',
username: 'POSTGRES_USER',
password: 'POSTGRES_PASSWORD',
database: 'POSTGRES_DB',
},
admin_token: 'ADMIN_TOKEN'
}