blob: 0f0cbc42baa9b83d54c50efba97e8951c4276473 [file] [log] [blame]
Zack Williamse14f7702020-10-22 19:57:55 -07001{#
2SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org>
3SPDX-License-Identifier: Apache-2.0
4#}
5[
6 {
7 "type": "postgres",
8 "host": "localhost",
9 "port": {{ timesheets_pg_db_port }},
10 "username": "{{ timesheets_pg_db_username }}",
11 "password": "{{ timesheets_pg_db_password }}",
12 "database": "{{ timesheets_pg_db }}",
13 "entities": ["dist/**/*.entity{ .ts,.js}"],
14 "synchronize": false,
15 "migrations": ["dist/migrations/*{.ts,.js}"],
16 "migrationsTableName": "migrations_typeorm",
17 "migrationsRun": true
18 }
19]