mirror of
https://github.com/MarekWo/mc-webui.git
synced 2026-07-07 02:10:58 +02:00
6a455cb652
Created complete project structure for mc-webui MVP: - Docker configuration (Dockerfile, docker-compose.yml) - Environment configuration (.env.example) - Python dependencies (requirements.txt) - Project documentation (README.md) - Git ignore rules (.gitignore) - Directory structure for app, routes, templates, static files Ready for Phase 1: Backend implementation 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
80 lines
1.3 KiB
Plaintext
80 lines
1.3 KiB
Plaintext
# mc-webui .gitignore
|
|
|
|
# ============================================
|
|
# Environment and Configuration
|
|
# ============================================
|
|
.env
|
|
*.env
|
|
!.env.example
|
|
|
|
# ============================================
|
|
# Python
|
|
# ============================================
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# ============================================
|
|
# Virtual Environment
|
|
# ============================================
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.venv
|
|
|
|
# ============================================
|
|
# IDE and Editors
|
|
# ============================================
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# ============================================
|
|
# Testing and Coverage
|
|
# ============================================
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
*.cover
|
|
.hypothesis/
|
|
|
|
# ============================================
|
|
# Docker
|
|
# ============================================
|
|
docker-compose.override.yml
|
|
|
|
# ============================================
|
|
# Logs and Databases
|
|
# ============================================
|
|
*.log
|
|
*.sql
|
|
*.sqlite
|
|
*.db
|
|
|
|
# ============================================
|
|
# OS
|
|
# ============================================
|
|
Thumbs.db
|
|
.DS_Store
|