feat: add .dockerignore and document BASE_URL in .env.example

This commit is contained in:
Jennie Robinson Faber 2026-04-04 12:41:00 +01:00
parent a32e4de2ac
commit e81000b5a6
2 changed files with 9 additions and 0 deletions

6
.dockerignore Normal file
View file

@ -0,0 +1,6 @@
node_modules
.env
.env.*
.git
.gitignore
*.log

View file

@ -22,6 +22,9 @@ JWT_SECRET=your-jwt-secret-key-change-this-in-production
# Application URLs # Application URLs
APP_URL=http://localhost:3000 APP_URL=http://localhost:3000
# Base URL for emails and magic links (used by server-side code)
BASE_URL=http://localhost:3000
# OIDC Provider (for Outline Wiki SSO) # OIDC Provider (for Outline Wiki SSO)
OIDC_CLIENT_ID=outline-wiki OIDC_CLIENT_ID=outline-wiki
OIDC_CLIENT_SECRET=<generate-with-openssl-rand-hex-32> OIDC_CLIENT_SECRET=<generate-with-openssl-rand-hex-32>