Remove build.sh generated symlinks and runtime files from git: - conf/config.json (runtime config) - stop.sh, start.sh, sage.service (runtime scripts) - wwwroot/* symlinks (module links created by build.sh) These files are already in .gitignore and should not be tracked.
83 lines
1.1 KiB
Plaintext
83 lines
1.1 KiB
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# Virtual environment
|
|
py3/
|
|
|
|
# Logs
|
|
logs/
|
|
|
|
# PID files
|
|
*.pid
|
|
|
|
# Generated files
|
|
*.pem
|
|
*.key
|
|
merchant_*.pem
|
|
alipay_*.pem
|
|
pay_*.pem
|
|
|
|
# Database
|
|
models/mysql.ddl.sql
|
|
|
|
# pkgs (submodules should be in their own repos)
|
|
pkgs/
|
|
|
|
# wwwroot temp files
|
|
wwwroot/.DS_Store
|
|
wwwroot/*.bak*
|
|
wwwroot/tmp/
|
|
|
|
# Migration scripts (run once, not needed in repo)
|
|
migrate_*.py
|
|
reset_*.py
|
|
check_*.py
|
|
set_*.sh
|
|
setup_*.sh
|
|
|
|
# Sage runtime
|
|
sage.pid
|
|
sage_backend.pid
|
|
|
|
# Swap files
|
|
*.swp
|
|
*.swo
|
|
|
|
# Module symlinks (created by build.sh)
|
|
wwwroot/accounting
|
|
wwwroot/appbase
|
|
wwwroot/bricks
|
|
wwwroot/charge
|
|
wwwroot/cpcc
|
|
wwwroot/dapi
|
|
wwwroot/dashboard_for_sage
|
|
wwwroot/discount
|
|
wwwroot/filemgr
|
|
wwwroot/harnessed_agent
|
|
wwwroot/harnessed_reasoning
|
|
wwwroot/hermes-web-cli
|
|
wwwroot/llmage
|
|
wwwroot/msp
|
|
wwwroot/platformbiz
|
|
wwwroot/pricing
|
|
wwwroot/product_management
|
|
wwwroot/rag
|
|
wwwroot/rbac
|
|
wwwroot/reallife_asset
|
|
wwwroot/shell_theme.css
|
|
wwwroot/shell_theme.js
|
|
wwwroot/supplychain
|
|
wwwroot/uapi
|
|
wwwroot/unipay
|
|
wwwroot/voucher
|
|
|
|
# Runtime generated files (created by build.sh)
|
|
conf/config.json
|
|
stop.sh
|
|
start.sh
|
|
sage.service
|