Hey guys, I read at multiple occasions, that the ....
# orm-help
p
Hey guys, I read at multiple occasions, that the .env file in a prisma project should be edited? I don't have one. Is it necessary to eject the project first?
v
You can create it yourself, it's normal for .env files to not be supplied in version control
here's a sample, I normally create
.env.example
that is version controlled:
Copy code
PRISMA_STAGE="dev"
PRISMA_ENDPOINT="<https://us1.prisma.sh/user/project/dev>"
PRISMA_CLUSTER="user/prisma-us1"
PRISMA_SECRET="mysecret123"
APP_SECRET="jwtsecret123"
APP_PORT=4000
ENGINE_API_KEY="service:user-0000:key"