Initial commit: LinkSyncServer and LinkSyncExtension projects with complete documentation, models, API endpoints, tests, and extension implementation

This commit is contained in:
DavidSaylor
2026-05-11 17:37:10 -05:00
parent ad0b12b452
commit aed69afdfd
691 changed files with 181874 additions and 28 deletions

View 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