Skip to content

Commit 8703c0d

Browse files
committed
Fix dataportal file paths in workflow
1 parent aeed79f commit 8703c0d

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/dataportal.env

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ TYPEORM_PORT=5432
88
TYPEORM_SYNCHRONIZE=false
99
TYPEORM_MIGRATIONS_RUN=true
1010
TYPEORM_LOGGING=false
11-
TYPEORM_ENTITIES=build/entity/*.js
12-
TYPEORM_MIGRATIONS=build/migration/*.js
11+
TYPEORM_ENTITIES=build/app/src/entity/*.js
12+
TYPEORM_MIGRATIONS=build/app/src/migration/*.js
1313
DP_SS_URL=http://storage-service:5900
1414
DP_SS_USER=test
1515
DP_SS_PASSWORD=test

.github/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ services:
1515
[
1616
"sh",
1717
"-c",
18-
"node build/fixtures.js /backend-fixtures/backend/fixtures TRUNCATE && node build/fixtures.js /dataportal-fixtures APPEND && npm run start",
18+
"node build/app/src/fixtures.js /backend-fixtures/backend/fixtures TRUNCATE && node build/app/src/fixtures.js /dataportal-fixtures APPEND && node build/app/src/server.js",
1919
]
2020
db:
2121
image: "postgres:16"

0 commit comments

Comments
 (0)