refactor: reorganize file structure and update .gitignore
- Move settings file to config/ directory - Move control script to code/ directory - Remove create-network.sh script as requested - Create comprehensive .gitignore file to handle test logs and artifacts - Update all scripts to reference new file locations - Update STATUS.md to reflect new file structure Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
This commit is contained in:
84
.gitignore
vendored
Normal file
84
.gitignore
vendored
Normal file
@@ -0,0 +1,84 @@
|
||||
# TSYSDevStack SupportStack Demo .gitignore
|
||||
|
||||
# Docker-related
|
||||
*.dockerignore
|
||||
.dockerconfig
|
||||
.dockerenv
|
||||
|
||||
# Environment and configuration
|
||||
.env
|
||||
.env.local
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
logs/
|
||||
*.out
|
||||
*.pid
|
||||
|
||||
# OS generated
|
||||
.DS_Store
|
||||
.DS_Store?
|
||||
._*
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
ehthumbs.db
|
||||
Thumbs.db
|
||||
desktop.ini
|
||||
|
||||
# IDE
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# Node-related (if any)
|
||||
node_modules/
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# Build outputs
|
||||
build/
|
||||
dist/
|
||||
target/
|
||||
*.tmp
|
||||
*.temp
|
||||
|
||||
# Test outputs
|
||||
coverage/
|
||||
.nyc_output/
|
||||
*.gcda
|
||||
*.gcno
|
||||
|
||||
# Docker artifacts
|
||||
artifacts/SupportStack/config/wakaapi/database/*.db
|
||||
artifacts/SupportStack/config/wakaapi/database/*.db-journal
|
||||
artifacts/SupportStack/config/homepage/logs/
|
||||
artifacts/SupportStack/docker-compose/config/
|
||||
|
||||
# Local Docker volumes
|
||||
.docker-volumes/
|
||||
|
||||
# Database files
|
||||
*.db
|
||||
*.db-journal
|
||||
*.sqlite
|
||||
*.sqlite-shm
|
||||
*.sqlite-wal
|
||||
|
||||
# Temporary files
|
||||
tmp/
|
||||
temp/
|
||||
.Dockerfile*
|
||||
|
||||
# Backup files
|
||||
*~
|
||||
*.bak
|
||||
*.backup
|
||||
|
||||
# System files
|
||||
.SynologyWorkingDirectory
|
||||
Reference in New Issue
Block a user