first commit

This commit is contained in:
domrichardson
2026-03-24 16:03:04 +00:00
commit df40cc57e1
80 changed files with 16766 additions and 0 deletions

22
.env.example Normal file
View File

@@ -0,0 +1,22 @@
# Docker Compose Environment Configuration (Example)
# Copy this file to .env and update values as needed
# MongoDB Configuration
MONGODB_URI=mongodb://admin:password@mongodb:27017/noteapp?authSource=admin
# Backend Configuration
BACKEND_PORT=8080
JWT_SECRET=your-super-secret-jwt-key-minimum-32-characters-change-in-production
ENCRYPTION_KEY=A5CC60AB92FCA026F5477DC486555882
FRONTEND_URL="http://localhost"
VITE_API_BASE_URL="http://localhost"
# Default Admin
DEFAULT_ADMIN_EMAIL=admin@notely.local
DEFAULT_ADMIN_USERNAME=admin
DEFAULT_ADMIN_PASSWORD=ChangeThisAdminPassword123!
# Nginx Configuration
NGINX_HTTP_PORT=80
NGINX_HTTPS_PORT=443