This repository has been archived on 2025-04-03. You can view files and clone it, but cannot push or open issues or pull requests.
newMuffin/src/config.ts

29 lines
749 B
TypeScript

type NodeEnv = 'development' | 'production'
export class Config {
private _getRequiredValue(key: string) {
const value = process.env[key]
if (!value) throw new Error(`.env 파일에서 필요한 ${key}값이 없어요.`)
return value
}
private _getValue(key: string) {
return process.env[key]
}
public bot = {
token: this._getRequiredValue('BOT_TOKEN'),
ownerId: this._getRequiredValue('BOT_OWNER_ID'),
prefix: this._getRequiredValue('BOT_PREFIX'),
}
public train = {
userId: this._getValue('TRAIN_USER_ID'),
}
public nodeEnv: NodeEnv = this._getValue('NODE_ENV')
? (this._getValue('NODE_ENV') as NodeEnv)
: 'production'
public databaseUrl = this._getRequiredValue('DATABASE_URL')
}