Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 329 Bytes

README.md

File metadata and controls

19 lines (17 loc) · 329 Bytes

coffee-catalogue-svc

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;
  };
}