A simple Coffee Service
Create a config.json
file inside src/configs
to start
interface Config {
port: number;
postgres: {
host: string;
port: number;
database: string;
username: string;
password: string;
synchronize: boolean;
migrationRuns: boolean;
};
}