mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-23 02:36:05 +00:00
chore: add postgres env example
This commit is contained in:
parent
2a4dbd7ad0
commit
a99f86a99c
2 changed files with 7 additions and 0 deletions
|
|
@ -2,3 +2,6 @@ app-build
|
|||
node_modules
|
||||
.idea
|
||||
.vscode
|
||||
*.env
|
||||
*.env.example
|
||||
.prettierignore
|
||||
|
|
|
|||
|
|
@ -16,6 +16,10 @@ PUBLIC_URL=http://localhost:1900
|
|||
# Use a long, random string (e.g., generated with: openssl rand -base64 32)
|
||||
JWT_SECRET=change-me-in-production
|
||||
|
||||
# PostgreSQL connection (used by Prisma)
|
||||
# Example assumes local Postgres; adjust user/password/host/db as needed.
|
||||
DATABASE_URL=postgresql://supersync:superpassword@localhost:5432/supersync_db
|
||||
|
||||
# Environment mode
|
||||
# Set to "production" for production deployments
|
||||
# NODE_ENV=production
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue