Skip to content

Commit 8f0600e

Browse files
author
remotenwsshell
committed
chore: include development database in git
- Add backend/prisma/dev.db to version control - Update .gitignore to exclude all *.db files except backend/prisma/dev.db - Update CI workflow to trigger on dev branch instead of master
1 parent c76c734 commit 8f0600e

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: CI
22

33
on:
44
push:
5-
branches: [main, master]
5+
branches: [main, dev]
66
pull_request:
7-
branches: [main, master]
7+
branches: [main, dev]
88

99
jobs:
1010
backend:

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ build/
44

55
*.db
66
*.db-journal
7+
!backend/prisma/dev.db
78

89
.env
910
.env.local

backend/prisma/dev.db

92 KB
Binary file not shown.

0 commit comments

Comments
 (0)