This commit is contained in:
parent
7285fd945a
commit
024e96df55
@ -40,7 +40,7 @@ jobs:
|
||||
run: bun install
|
||||
|
||||
- name: Push Database - Test
|
||||
run: bun run db:push
|
||||
run: bun db:push:force
|
||||
env:
|
||||
POSTGRES_URL: postgres://postgres:postgres@postgres:5432/postgres
|
||||
|
||||
|
@ -10,6 +10,7 @@
|
||||
"db:generate": "bun --filter '@boring.tools/database' db:generate",
|
||||
"db:migrate": "bun --filter '@boring.tools/database' db:migrate",
|
||||
"db:push": "bun --filter '@boring.tools/database' db:push",
|
||||
"db:push:force": "bun --filter '@boring.tools/database' db:push:force",
|
||||
"test:api": "bun --filter '@boring.tools/api' test",
|
||||
"docker:website:build": "docker build -t git.hashdot.co/boring.tools/boring.tools/website -f ci/docker/website/Dockerfile .",
|
||||
"docker:website:push": "docker push git.hashdot.co/boring.tools/boring.tools/website",
|
||||
|
11
packages/database/drizzle.ci.config.ts
Normal file
11
packages/database/drizzle.ci.config.ts
Normal file
@ -0,0 +1,11 @@
|
||||
import { defineConfig } from 'drizzle-kit'
|
||||
export default defineConfig({
|
||||
schema: './src/schema/index.ts',
|
||||
out: './src/migrations',
|
||||
dialect: 'postgresql',
|
||||
dbCredentials: {
|
||||
url: process.env.POSTGRES_URL as string,
|
||||
},
|
||||
verbose: false,
|
||||
strict: false,
|
||||
})
|
@ -4,6 +4,7 @@
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"db:push": "drizzle-kit push",
|
||||
"db:push:force": "drizzle-kit push --config=drizzle.ci.config.ts",
|
||||
"db:studio": "drizzle-kit studio",
|
||||
"db:generate": "drizzle-kit generate",
|
||||
"db:migrate": "drizzle-kit migrate"
|
||||
|
Loading…
Reference in New Issue
Block a user