Initial commit: LinkSyncServer and LinkSyncExtension projects with complete documentation, models, API endpoints, tests, and extension implementation
This commit is contained in:
23
LinkSyncServer/.env.example
Normal file
23
LinkSyncServer/.env.example
Normal file
@@ -0,0 +1,23 @@
|
||||
# LinkSyncServer Environment Variables
|
||||
|
||||
# Database
|
||||
DB_PASSWORD=your_secure_database_password_here
|
||||
DATABASE_URL=postgresql://linksync:${DB_PASSWORD}@localhost:5432/linksync
|
||||
|
||||
# JWT Secret (generate with: openssl rand -base64 32)
|
||||
SECRET_KEY=your_secret_key_here
|
||||
|
||||
# Admin User (first user created)
|
||||
ADMIN_USERNAME=admin
|
||||
ADMIN_PASSWORD=your_admin_password_here
|
||||
|
||||
# Application
|
||||
DEBUG=False
|
||||
HOST=0.0.0.0
|
||||
PORT=5000
|
||||
|
||||
# CORS - Comma-separated list of allowed origins
|
||||
CORS_ORIGINS=http://localhost:5555,http://localhost:80
|
||||
|
||||
# Logging
|
||||
LOG_LEVEL=INFO
|
||||
Reference in New Issue
Block a user