stuff
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
import "dotenv/config";
|
||||
import { defineConfig, env } from "prisma/config";
|
||||
|
||||
export default defineConfig({
|
||||
schema: "prisma/schema.prisma",
|
||||
datasource: {
|
||||
url: env("DATABASE_URL") ?? "file:./dev.db",
|
||||
},
|
||||
});
|
||||
1
.claude/worktrees/quirky-golick
Submodule
1
.claude/worktrees/quirky-golick
Submodule
Submodule .claude/worktrees/quirky-golick added at 04ebc91e9f
1
.claude/worktrees/reverent-proskuriakova
Submodule
1
.claude/worktrees/reverent-proskuriakova
Submodule
Submodule .claude/worktrees/reverent-proskuriakova added at 19b1f26254
32
.stignore
Normal file
32
.stignore
Normal file
@@ -0,0 +1,32 @@
|
||||
// Git internals - never sync
|
||||
.git
|
||||
|
||||
// Dependencies
|
||||
node_modules
|
||||
|
||||
// Next.js build output
|
||||
.next
|
||||
out
|
||||
|
||||
// Local env files with secrets
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
|
||||
// Database files (use migrations, not the file)
|
||||
*.db
|
||||
*.db-journal
|
||||
*.db-shm
|
||||
*.db-wal
|
||||
|
||||
// Build artifacts
|
||||
build
|
||||
tsconfig.tsbuildinfo
|
||||
|
||||
// Syncthing own temp files (safety net)
|
||||
~syncthing~*
|
||||
.syncthing.*
|
||||
|
||||
// OS junk
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
Reference in New Issue
Block a user