-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
28 lines (22 loc) · 736 Bytes
/
Copy path.env.example
File metadata and controls
28 lines (22 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Database Configuration
JUSTNOTES_DATABASE_URL=sqlite:///app/data/justnotes.db
# JWT Configuration
JUSTNOTES_SECRET_KEY=your-secret-key-change-in-production
JUSTNOTES_ALGORITHM=HS256
JUSTNOTES_ACCESS_TOKEN_EXPIRE_MINUTES=30
# Application Configuration
JUSTNOTES_APP_NAME=JustNotes
JUSTNOTES_APP_VERSION=0.0.1
JUSTNOTES_APP_DESCRIPTION=JustNotes is a simple note-taking app
# Development/Production
JUSTNOTES_ENVIRONMENT=development
JUSTNOTES_DEBUG=true
# Server Configuration (for Docker)
JUSTNOTES_HOST=0.0.0.0
JUSTNOTES_PORT=8000
JUSTNOTES_RELOAD=false
# CORS Configuration
JUSTNOTES_CORS_ORIGINS=*
# LLM Service Configuration
JUSTNOTES_LLM_SERVICE_URL=http://localhost:1234/api/v1/chat
JUSTNOTES_LLM_MODEL=google/gemma-3n-e4b