ci: db push force for ci
All checks were successful
Test / build (push) Successful in 30s

This commit is contained in:
Lars Hampe 2024-10-01 18:42:20 +02:00
parent 7285fd945a
commit 024e96df55
4 changed files with 14 additions and 1 deletions

View File

@ -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

View File

@ -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",

View 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,
})

View File

@ -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"