Update entrypoint script in Dockerfile and remove DATABASE_URL reference from schema.prisma: Modify entrypoint to check for prisma.config.ts instead of schema.prisma, and streamline migration command. Remove DATABASE_URL environment variable usage from schema.prisma for improved clarity.
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 1m9s

This commit is contained in:
Julien Froidefond
2025-12-19 08:58:48 +01:00
parent 881b8149e5
commit 5dc178543e
2 changed files with 3 additions and 4 deletions

View File

@@ -5,7 +5,6 @@ generator client {
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
model User {