mon-entreprise/server/source/config.ts

58 lines
1.3 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

import dotenv from 'dotenv'
import type { MattermostSendMessage } from './mattermost.js'
dotenv.config()
if (!process.env.MONGO_URL) {
throw new Error('Empty MONGO_URL env var')
}
if (!process.env.CLIENT_ID) {
throw new Error('Empty CLIENT_ID env var')
}
if (!process.env.CLIENT_SECRET) {
throw new Error('Empty CLIENT_SECRET env var')
}
export const PORT = process.env.PORT || 4000
export const ORIGIN = process.env.ORIGIN || 'http://localhost:4000'
export const MONGO_URL = process.env.MONGO_URL
export const NODE_ENV = process.env.NODE_ENV
export const serverUrl = 'https://mattermost.incubateur.net'
export const clientId = process.env.CLIENT_ID
export const clientSecret = process.env.CLIENT_SECRET
export const redirectUri = `${ORIGIN}/oauth`
const days = [
'Lundi',
'Mardi',
'Mercredi',
'Jeudi',
'Vendredi',
'Samedi',
'Dimanche',
]
interface BotConfig {
channelName: string
standupDays: string[]
messageProps: MattermostSendMessage['props']
}
export const botConfig: BotConfig = {
channelName:
NODE_ENV !== 'production'
? 'startup-monentreprise-dev-bot-stand-up'
: 'startup-monentreprise-stand-up',
standupDays: days.slice(0, 4),
messageProps: {
from_webhook: 'true',
override_username: 'LURSSAF est votre amie',
override_icon_url:
'https://mon-entreprise.urssaf.fr/favicon/favicon-32x32.png?v=2.0',
},
}