We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52a7d61 commit a603f39Copy full SHA for a603f39
.env.local.example
@@ -1,4 +1,4 @@
1
-AUTH_SECRET= # Linux: `openssl rand -hex 32` or go to https://generate-secret.vercel.app/32
+AUTH_SECRET= # `npx auth secret` or `openssl rand -hex 32`
2
3
AUTH_AUTH0_ID=
4
AUTH_AUTH0_SECRET=
Dockerfile
@@ -22,6 +22,9 @@ COPY . .
22
# Uncomment the following line in case you want to disable telemetry during the build.
23
# ENV NEXT_TELEMETRY_DISABLED 1
24
25
+# This should be replaced with an actual secret in production.
26
+# REVIEW: Can we make this not required during build?
27
+ENV AUTH_SECRET dummy
28
RUN npm run build
29
30
# Production image, copy all the files and run next
0 commit comments