23 lines
447 B
TypeScript
23 lines
447 B
TypeScript
export const config = {
|
|
api: {
|
|
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;
|