Updated files

This commit is contained in:
2025-08-06 19:06:05 +02:00
parent 012ea2b963
commit 0c993266bd
4 changed files with 8 additions and 31 deletions

27
.gitignore vendored
View File

@@ -1,17 +1,5 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/.pnp
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/versions
# testing
/coverage
# next.js
/.next/
@@ -20,21 +8,8 @@
# production
/build
# misc
.DS_Store
*.pem
# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
# env files (can opt-in for committing if needed)
.env*
# vercel
.vercel
.env
# typescript
*.tsbuildinfo

1
.npmrc Normal file
View File

@@ -0,0 +1 @@
public-hoist-pattern[]=*@nextui-org/*

View File

@@ -1,11 +1,11 @@
import { defineConfig } from "drizzle-kit";
import { env } from "./src/lib/env/server";
import { defineConfig } from "drizzle-kit"
import { env } from "./src/lib/env/server"
export default defineConfig({
schema: "./src/lib/drizzle/schema.ts",
out: "./src/lib/drizzle/migrations",
dialect: "postgresql",
dbCredentials: {
url: env.DATABASE_URL,
},
});
url: env.DATABASE_URL
}
})

View File

@@ -3,6 +3,7 @@
"version": "0.1.0",
"private": true,
"scripts": {
"docker": "pnpm db:migrate && pnpm start",
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",