Refine .gitignore and .dockerignore files

This commit is contained in:
hkfires
2025-09-14 16:29:06 +08:00
parent 9fce13fe03
commit d6037e5549
2 changed files with 15 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
# Git and GitHub folders # Git and GitHub folders
.git .git/*
.github .github/*
# Docker and CI/CD related files # Docker and CI/CD related files
docker-compose.yml docker-compose.yml
@@ -10,6 +10,7 @@ docker-compose.yml
Dockerfile Dockerfile
# Documentation and license # Documentation and license
docs/*
README.md README.md
README_CN.md README_CN.md
MANAGEMENT_API.md MANAGEMENT_API.md
@@ -20,6 +21,11 @@ LICENSE
config.example.yaml config.example.yaml
# Runtime data folders (should be mounted as volumes) # Runtime data folders (should be mounted as volumes)
auths auths/*
logs logs/*
conv/*
config.yaml config.yaml
# Development/editor
.claude/*
.vscode/*

6
.gitignore vendored
View File

@@ -1,6 +1,10 @@
config.yaml config.yaml
docs/* docs/*
logs/* logs/*
conv/*
auths/* auths/*
!auths/.gitkeep !auths/.gitkeep
AGENTS.md .vscode/*
.claude/*
AGENTS.md
CLAUDE.md