1
0
Fork 0
mirror of https://github.com/maybe-finance/maybe.git synced 2025-08-09 15:35:22 +02:00

Removed NX_SESSION_SECRET

No longer used
This commit is contained in:
Josh Pigford 2024-01-14 20:03:52 -06:00
parent 70d2a45a5e
commit a562da7820
2 changed files with 0 additions and 3 deletions

View file

@ -8,8 +8,6 @@ NX_POLYGON_API_KEY=
# If using free ngrok account for webhooks # If using free ngrok account for webhooks
NGROK_AUTH_TOKEN= NGROK_AUTH_TOKEN=
NX_SESSION_SECRET=
# Generate a new secret using openssl rand -base64 32 # Generate a new secret using openssl rand -base64 32
NEXTAUTH_SECRET= NEXTAUTH_SECRET=
NEXTAUTH_URL=http://localhost:4200 NEXTAUTH_URL=http://localhost:4200

View file

@ -29,7 +29,6 @@ const envSchema = z.object({
NX_DATABASE_URL: z.string(), NX_DATABASE_URL: z.string(),
NX_DATABASE_SECRET: z.string(), NX_DATABASE_SECRET: z.string(),
NX_SESSION_SECRET: z.string(),
NX_NGROK_URL: z.string().default('http://localhost:4551'), NX_NGROK_URL: z.string().default('http://localhost:4551'),