Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ yarn-error.*
# local env files
.env*.local
.env
.env.production

# typescript
*.tsbuildinfo
Expand Down
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ WORKDIR /repo

COPY package.json yarn.lock ./
COPY scripts ./scripts
COPY patches ./patches

RUN mkdir -p packages/happy-app packages/happy-server packages/happy-cli packages/happy-agent packages/happy-wire

Expand Down
1 change: 1 addition & 0 deletions packages/happy-server/sources/standalone.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ async function migrate() {
let migrationsDirResolved = "";
const candidates = [
path.join(process.cwd(), "prisma", "migrations"),
path.join(process.cwd(), "packages", "happy-server", "prisma", "migrations"),
path.join(path.dirname(process.execPath), "prisma", "migrations"),
];
for (const candidate of candidates) {
Expand Down