feat(api): migrations on startup
All checks were successful
Build and Push Docker Image / tests (push) Successful in 33s
Build and Push Docker Image / build (push) Successful in 1m30s

This commit is contained in:
Lars Hampe 2024-10-02 13:37:30 +02:00
parent 626cf0ef70
commit 919f53ead5
2 changed files with 1 additions and 5 deletions

View File

@ -1,4 +1,3 @@
import path from 'node:path'
import { migrateDatabase } from '@boring.tools/database'
declare module 'bun' {
@ -11,7 +10,6 @@ declare module 'bun' {
}
export const startup = async () => {
console.log(__dirname)
if (import.meta.env.NODE_ENV === 'test') {
if (!import.meta.env.POSTGRES_URL) {
console.error('Env Var POSTGRES_URL is missing!')
@ -33,6 +31,6 @@ export const startup = async () => {
})
if (import.meta.env.NODE_ENV === 'production') {
await migrateDatabase(path.join(__dirname, 'migrations'))
await migrateDatabase('migrations')
}
}

View File

@ -1,10 +1,8 @@
import path from 'node:path'
import { migrate } from 'drizzle-orm/postgres-js/migrator'
import { client, db } from './'
export const migrateDatabase = async (dir: string) => {
try {
console.log(__dirname)
await migrate(db, { migrationsFolder: dir })
await client.end()
console.log('Migrations: Ok')