Zack Williams | e14f770 | 2020-10-22 19:57:55 -0700 | [diff] [blame^] | 1 | {# |
| 2 | SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org> |
| 3 | SPDX-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 | ] |