added systemd service howto traefik nginix set_real_ip_from improved readme visuals fixed on mobile labels removed updated readme fixed visuals overlay for the hotkey disable screen lock clean up git precommit hooks clean up clean up update check for update feature added build-time information fixed date
40 lines
676 B
Plaintext
40 lines
676 B
Plaintext
# Git files
|
|
.git
|
|
.gitignore
|
|
|
|
# Node modules - these are installed within the Docker build context
|
|
node_modules
|
|
|
|
# Docker specific files (if any, other than Dockerfile itself)
|
|
# .dockerignore (to avoid including itself if context changes)
|
|
docker
|
|
systemd
|
|
|
|
# Local development environment files
|
|
.env
|
|
.env*.local
|
|
|
|
# Logs and temporary files
|
|
logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
pnpm-debug.log*
|
|
|
|
# OS-specific files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE configuration
|
|
.idea/
|
|
.vscode/
|
|
*.sublime-workspace
|
|
*.sublime-project
|
|
|
|
# Build output (if you ever build locally before Docker)
|
|
dist/
|
|
# If your build output is different, change the line above
|
|
|
|
# Coverage reports
|
|
coverage/
|
|
.nyc_output/ |