-
Notifications
You must be signed in to change notification settings - Fork 76
Description
I tried both ways to try the app - via https://prisma-editor.vercel.app/ and via local setups. Both failed:
the web version refresh never ends; when i change the prisma db description, a never ending request to heroki is been run
and
the local installation using Dockerfile fails as well due to incompatibility of nodejs version. I tried to change the base image to
... node:20-alpine3.17 AS base
and finally I could build the image, but unfortunately when I run a container , an error about
Invalid environment variables: { DATABASE_URL: [ 'Invalid url' ], NEXTAUTH_URL: [ 'Invalid url' ] }
appears. I have set env to use sqlite://file:./f.db as db, and I see no reason for the problem.
I would appreciate a docker-compose.yaml file in order to start the whole bunch of requirements and to concentrate on app review.
Could you provide a working local installation with containers?