From d1af9df6ef81d8dd35e465349354e73f399aff87 Mon Sep 17 00:00:00 2001 From: L4168 <L4168@student.jamk.fi> Date: Mon, 1 Jul 2019 10:04:59 +0300 Subject: [PATCH] update ormconfig.json.example --- ormconfig.json.example | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/ormconfig.json.example b/ormconfig.json.example index e5a401d..93b73ae 100644 --- a/ormconfig.json.example +++ b/ormconfig.json.example @@ -1,12 +1,13 @@ { - "type": "", - "host": "", - "port": , - "username": "", - "password": "", - "database": "", + "type": "postgres", + "host": "localhost", + "port": 5432, + "username": "ehasa", + "password": "salasana", + "database": "ehasa", "entities": ["src/**/*.entity{.ts,.js}"], "synchronize": true, - "logging": true + "logging": true, + "dropSchema": false } \ No newline at end of file -- GitLab