Files
CLICD/.gitignore
T
MengMengCode 38debab1aa Add custom image handling and access policy management
- Implement tests for custom KVM and LXC image creation, ensuring invalid sources and architecture mismatches are rejected.
- Introduce access policy management in CLI, allowing configuration of allowed sources and trusted proxies.
- Add NAT network configuration with validation for RFC1918 compliance and subnet parsing.
- Create panel access policy management, including normalization and evaluation of access decisions based on client IPs and forwarded headers.
- Develop middleware for enforcing access policies in the server, returning appropriate responses for allowed and denied requests.
- Enhance custom image downloading and validation, ensuring integrity and security of downloaded root filesystem archives.
- Include comprehensive tests for all new functionalities to ensure reliability and correctness.
2026-07-26 04:04:45 +08:00

76 lines
856 B
Plaintext

# Dependencies
node_modules/
frontend/node_modules/
# Frontend build output
/frontend/dist/
/web/
# Go embedded frontend build output.
# Keep only the placeholder so `go build` can compile before frontend assets exist.
backend/internal/server/web/*
!backend/internal/server/web/.gitkeep
# Build artifacts
/build/
/dist/
Mofang/*.zip
*.exe
*.dll
*.so
*.dylib
*.test
*.out
*.prof
# Local deploy and debug scripts
deploy.py
check_*.py
reset_pass.py
# Runtime/config data
.clicd/
config.json
*.db
*.sqlite
*.sqlite3
# Environment and secrets
.env
.env.*
*.pem
*.key
id_rsa*
# Logs
*.log
logs/
# Python cache
__pycache__/
*.py[cod]
# Go
backend/vendor/
backend/tmp/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
.claude/
# OS
.DS_Store
Thumbs.db
linux.txt
push-release.ps1
deploy.ps1
backend/clicd
api.md
deploy-arm.ps1
deploy-dhcp.ps1
deploy-pve-windows.ps1