Initial commit - Customer Portal for Coolify

This commit is contained in:
2025-12-17 10:08:34 +01:00
commit 9fca32567c
153 changed files with 16432 additions and 0 deletions

61
.dockerignore Normal file
View File

@@ -0,0 +1,61 @@
# Git
.git
.gitignore
# Python
__pycache__
*.py[cod]
*$py.class
*.so
.Python
.env
.venv
venv/
ENV/
.eggs
*.egg-info/
.pytest_cache/
.coverage
htmlcov/
.mypy_cache/
# IDE
.idea/
.vscode/
*.swp
*.swo
*~
# Docker
Dockerfile*
!Dockerfile
docker-compose*.yml
.docker/
# Documentation
*.md
docs/
LICENSE
# Tests
tests/
test_*.py
*_test.py
conftest.py
# CI/CD
.github/
.gitlab-ci.yml
.travis.yml
Jenkinsfile
# Database
*.db
*.sqlite3
migrations/versions/*.pyc
# Misc
*.log
*.tmp
.DS_Store
Thumbs.db