A deployable markdown editor that connects with your self hosted files and lets you edit in a beautiful interface
at main 25 lines 593 B view raw
1# Server Configuration 2PORT=8080 3FRONTEND_URL=http://localhost:4321 4ALLOWED_ORIGINS=http://localhost:4321 5 6# GitHub OAuth 7GITHUB_CLIENT_ID=your_github_client_id 8GITHUB_CLIENT_SECRET=your_github_client_secret 9GITHUB_REDIRECT_URL=http://localhost:8080/api/auth/github/callback 10 11# Session 12SESSION_SECRET=your-random-session-secret-min-32-chars-change-this-in-production 13SESSION_SECURE=false 14SESSION_MAX_AGE=86400 15 16# Database 17DATABASE_PATH=./data/markedit.db 18 19# Git Configuration 20GIT_CACHE_DIR=./data/repos 21GIT_AUTHOR_NAME=MarkEdit 22GIT_AUTHOR_EMAIL=markedit@example.com 23 24# Logging 25LOG_LEVEL=debug