Remove manual password hashing and web.yml setup in favor of automated generation. Add scripts for both Unix and Windows to create `monitoring/web.yml` using credentials from `.env`. This improves maintainability and reduces manual intervention during setup and configuration.
200 lines
7.9 KiB
Text
200 lines
7.9 KiB
Text
# ╔═══════════════════════════════════════════════════════════════════════════╗
|
|
# ║ ║
|
|
# ║ ███████╗ ██████╗██╗ ██╗ ██████╗ ███╗ ██╗ ║
|
|
# ║ ██╔════╝██╔════╝██║ ██║██╔═══██╗████╗ ██║ ║
|
|
# ║ ███████╗██║ ███████║██║ ██║██╔██╗ ██║ ║
|
|
# ║ ╚════██║██║ ██╔══██║██║ ██║██║╚██╗██║ ║
|
|
# ║ ███████║╚██████╗██║ ██║╚██████╔╝██║ ╚████║ ║
|
|
# ║ ╚══════╝ ╚═════╝╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝ ║
|
|
# ║ ║
|
|
# ╚═══════════════════════════════════════════════════════════════════════════╝
|
|
|
|
|
|
# ┌───────────────────────────────────────────────────────────────────────────┐
|
|
# │ Python │
|
|
# └───────────────────────────────────────────────────────────────────────────┘
|
|
|
|
# Bytecode & compiled
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
|
|
# Caches
|
|
__pycache__/
|
|
.pytest_cache/
|
|
.hypothesis/
|
|
.mypy_cache/
|
|
.pyre/
|
|
.pytype/
|
|
.dmypy.json
|
|
dmypy.json
|
|
cython_debug/
|
|
|
|
# Virtual environments
|
|
.Python
|
|
.venv/
|
|
venv/
|
|
env/
|
|
ENV/
|
|
env.bak/
|
|
ENV.bak/
|
|
venv.bak/
|
|
__pypackages__/
|
|
.python-version
|
|
|
|
|
|
# ┌───────────────────────────────────────────────────────────────────────────┐
|
|
# │ Django │
|
|
# └───────────────────────────────────────────────────────────────────────────┘
|
|
|
|
local_settings.py
|
|
db.sqlite3
|
|
db.sqlite3-journal
|
|
instance/
|
|
backups/
|
|
|
|
# Static & media (collected)
|
|
static/
|
|
media/
|
|
|
|
# Allow checked-in app static files
|
|
!engine/core/static/
|
|
!engine/payments/static/
|
|
!engine/vibes_auth/static/
|
|
!engine/blog/static/
|
|
|
|
# Celery
|
|
celerybeat-schedule
|
|
celerybeat.pid
|
|
|
|
|
|
# ┌───────────────────────────────────────────────────────────────────────────┐
|
|
# │ Testing & Coverage │
|
|
# └───────────────────────────────────────────────────────────────────────────┘
|
|
|
|
htmlcov/
|
|
.coverage
|
|
.coverage.*
|
|
coverage.xml
|
|
coverage.*
|
|
*.cover
|
|
*.py,cover
|
|
nosetests.xml
|
|
test.json
|
|
.tox/
|
|
.nox/
|
|
|
|
|
|
# ┌───────────────────────────────────────────────────────────────────────────┐
|
|
# │ Logs │
|
|
# └───────────────────────────────────────────────────────────────────────────┘
|
|
|
|
logs/
|
|
*.log
|
|
debug.log
|
|
errors.log
|
|
tmp/
|
|
|
|
|
|
# ┌───────────────────────────────────────────────────────────────────────────┐
|
|
# │ Build & Distribution │
|
|
# └───────────────────────────────────────────────────────────────────────────┘
|
|
|
|
build/
|
|
dist/
|
|
dist-ssr/
|
|
sdist/
|
|
wheels/
|
|
*.egg
|
|
*.egg-info/
|
|
*.manifest
|
|
*.spec
|
|
.installed.cfg
|
|
MANIFEST
|
|
share/python-wheels/
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
|
|
|
|
# ┌───────────────────────────────────────────────────────────────────────────┐
|
|
# │ Node.js & Frontend │
|
|
# └───────────────────────────────────────────────────────────────────────────┘
|
|
|
|
node_modules/
|
|
.nuxt/
|
|
.next/
|
|
next-env.d.ts
|
|
*.tsbuildinfo
|
|
.webassets-cache/
|
|
site/
|
|
|
|
# Debug logs
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
pnpm-debug.log*
|
|
lerna-debug.log*
|
|
|
|
# Cypress
|
|
cypress/videos/
|
|
cypress/screenshots/
|
|
|
|
|
|
# ┌───────────────────────────────────────────────────────────────────────────┐
|
|
# │ IDEs & Editors │
|
|
# └───────────────────────────────────────────────────────────────────────────┘
|
|
|
|
# VS Code
|
|
.vscode/
|
|
!.vscode/extensions.json
|
|
|
|
# JetBrains
|
|
.idea/
|
|
!.idea/icon.svg
|
|
!.idea/externalDependencies.xml
|
|
!.idea/schon.iml
|
|
|
|
# Visual Studio
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
*.sw?
|
|
|
|
# Spyder & Rope
|
|
.spyderproject
|
|
.spyproject
|
|
.ropeproject
|
|
|
|
|
|
# ┌───────────────────────────────────────────────────────────────────────────┐
|
|
# │ OS & System │
|
|
# └───────────────────────────────────────────────────────────────────────────┘
|
|
|
|
.DS_Store
|
|
desktop.ini
|
|
*.iml
|
|
|
|
|
|
# ┌───────────────────────────────────────────────────────────────────────────┐
|
|
# │ Project-specific │
|
|
# └───────────────────────────────────────────────────────────────────────────┘
|
|
|
|
# Environment
|
|
.env
|
|
|
|
# Development
|
|
test.ipynb
|
|
.scrapy
|
|
.cover
|
|
.pybuilder/
|
|
engine/core/vendors/docs/*
|
|
|
|
# Production
|
|
.initialized
|
|
./queries
|
|
./nginx.conf
|
|
monitoring/web.yml
|
|
|
|
# AI assistants
|
|
.claude/
|