Initial commit: Custom Start Page application with authentication and DynamoDB storage
This commit is contained in:
18
.env.example
Normal file
18
.env.example
Normal file
@@ -0,0 +1,18 @@
|
||||
# Server Configuration
|
||||
PORT=8080
|
||||
HOST=localhost
|
||||
|
||||
# Database Configuration (DynamoDB)
|
||||
AWS_REGION=us-east-1
|
||||
DYNAMODB_ENDPOINT=http://localhost:8000
|
||||
TABLE_PREFIX=startpage_
|
||||
USE_LOCAL_DB=true
|
||||
|
||||
# OAuth Configuration
|
||||
GOOGLE_CLIENT_ID=your-google-client-id
|
||||
GOOGLE_CLIENT_SECRET=your-google-client-secret
|
||||
GOOGLE_REDIRECT_URL=http://localhost:8080/auth/callback/google
|
||||
|
||||
# Session Configuration
|
||||
SESSION_SECRET=change-me-in-production
|
||||
SESSION_MAX_AGE=604800
|
||||
Reference in New Issue
Block a user