Files
XIVPlan-DB/config.example.ts
2026-04-09 01:44:41 -04:00

24 lines
465 B
TypeScript

export const config = {
api: {
enable: true,
publicDomain: '',
port: 14014,
},
db: {
host: 'localhost',
port: 3306,
username: '',
password: '',
name: 'xivplan',
},
discordWebhook: '',
email: {
accountId: 'zoho-account-id, from https://mail.zoho.com/api/accounts',
address: 'zoho-email@example.com',
clientId: 'zoho-self-client-id',
clientSecret: 'zoho-self-client-secret',
},
};
export default config;