Files
XIVPlan-DB/config.example.ts
2026-04-10 16:37:53 -04:00

23 lines
466 B
TypeScript

export const config = {
api: {
publicDomain: 'should end with a /',
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;