admin / Synapse-Sonar
publicAttack Surface Simulation
Synapse-Sonar / synapse-sonar / .env.example
715 B · main
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | # --- Database --- POSTGRES_USER=sonar POSTGRES_PASSWORD=sonar_dev_password POSTGRES_DB=synapse_sonar # Used by Prisma when running OUTSIDE docker (e.g. `prisma migrate dev` on host). # Inside docker compose the app receives a service-name DSN automatically. DATABASE_URL=postgresql://sonar:sonar_dev_password@localhost:5432/synapse_sonar?schema=public # --- Auth (NextAuth) --- NEXTAUTH_URL=http://localhost:3000 # openssl rand -base64 32 NEXTAUTH_SECRET=replace-me-with-a-long-random-string # --- Integration secret encryption --- # AES-256-GCM key as 64 hex chars (32 bytes). Generate with: # openssl rand -hex 32 INTEGRATION_ENCRYPTION_KEY=0000000000000000000000000000000000000000000000000000000000000000 |