2023-08-23 09:09:51 +08:00
|
|
|
<!-- # Ignore files and directories starting with a dot
|
2023-07-13 15:45:03 +08:00
|
|
|
|
|
|
|
|
# Ignore specific files
|
|
|
|
|
.dockerignore
|
2023-09-05 16:31:40 +08:00
|
|
|
.git
|
2023-07-13 15:45:03 +08:00
|
|
|
|
|
|
|
|
# Ignore build artifacts
|
|
|
|
|
_output/
|
|
|
|
|
logs/
|
|
|
|
|
|
|
|
|
|
# Ignore non-essential documentation
|
|
|
|
|
README.md
|
|
|
|
|
README-zh_CN.md
|
|
|
|
|
CONTRIBUTING.md
|
|
|
|
|
CHANGELOG/
|
|
|
|
|
# LICENSE
|
|
|
|
|
|
|
|
|
|
# Ignore testing and linting configuration
|
2023-08-23 16:45:52 +08:00
|
|
|
.golangci.yml
|
2023-07-13 15:45:03 +08:00
|
|
|
|
|
|
|
|
# Ignore deployment-related files
|
|
|
|
|
docker-compose.yaml
|
|
|
|
|
deployments/
|
|
|
|
|
|
|
|
|
|
# Ignore assets
|
|
|
|
|
assets/
|
|
|
|
|
|
|
|
|
|
# Ignore components
|
|
|
|
|
components/
|
|
|
|
|
|
|
|
|
|
# Ignore tools and scripts
|
2023-08-23 09:09:51 +08:00
|
|
|
.github/ -->
|