You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
471 B

interface Config {
serve: {
address: string;
port: number;
};
user?: {
username: string;
password: string;
};
}
export default {
serve: {
address: "localhost",
port: 8080,
},
// note that you can remove the user object and it will work; stories marked as mature will be inaccessible, however.
user: {
username: "USERNAME_OR_EMAIL",
password: "PASSWORD",
},
} as Config;