Files
NexaDash/.gitignore
T
nessi d694c8b8e3 Add project scaffolding and documentation
Add .env.example with configuration for database, Redis, security, SMTP, workers, and plugins. Add .gitignore for Python, Node.js, Next.js, Docker volumes, and IDE files. Add MIT License. Update README.md with feature overview, quick start guide, architecture description, plugin system documentation, security details, backup/restore instructions, and developer setup. Add Alembic configuration files and placeholder directories for API, web, worker, and plugin components
2026-06-21 09:31:47 +02:00

68 lines
578 B
Plaintext

# Dependencies
node_modules/
.pnpm-store/
.pnpm-debug.log*
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
.venv/
*.egg-info/
dist/
build/
# Next.js
.next/
out/
*.tsbuildinfo
next-env.d.ts
# Environment
.env
.env.local
.env.*.local
# IDE
.vscode/
.idea/
*.swp
*.swo
# OS
.DS_Store
Thumbs.db
# Logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Database
*.db
*.sqlite
*.sqlite3
# Docker volumes
postgres_data/
redis_data/
plugin_data/
# Test coverage
.coverage/
htmlcov/
.pytest_cache/
# Alembic
alembic.ini.bak
# Misc
*.zip
*.tar.gz