Initial commit

This commit is contained in:
Developer
2026-02-06 21:44:04 -06:00
commit f85e93c7a6
151 changed files with 22916 additions and 0 deletions

10
prisma-cli.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/sh
# Helper script to run Prisma commands in Docker container
# Usage: ./prisma-cli.sh <command>
# Examples:
# ./prisma-cli.sh migrate deploy
# ./prisma-cli.sh generate
# ./prisma-cli.sh studio
# ./prisma-cli.sh db seed
docker compose -f docker-compose.yaml exec web sh -c "cd /app && /app/node_modules/.bin/prisma $*"