- external-configs/: Chatwoot & Twenty custom compose files (shared DB) - external-configs/: Widget show.html.erb (bypass broken Vite integration) - .gitignore: exclude external source dirs, sensitive configs
37 lines
574 B
Plaintext
37 lines
574 B
Plaintext
# 外部源码目录(通过 git clone 获取,不纳入本项目仓库)
|
||
chatwoot/
|
||
twenty/
|
||
|
||
# 敏感配置文件(含 API keys / tokens / secrets)
|
||
bridge/chatwoot.config.json
|
||
bridge/llm.config.json
|
||
bridge/twenty.config.json
|
||
bridge/kb.config.json
|
||
chatwoot/.env
|
||
twenty/packages/twenty-docker/.env
|
||
docker-compose.yml
|
||
|
||
|
||
# 运行时生成
|
||
public/vite-dev/
|
||
public/widget-assets/
|
||
public/packs/
|
||
runtime/
|
||
tmp/
|
||
log/
|
||
|
||
# 依赖
|
||
node_modules/
|
||
vendor/
|
||
.gems/
|
||
|
||
# 测试/临时文件
|
||
mock_eta.js
|
||
mock_services.js
|
||
gen_apikey.js
|
||
add_note.js
|
||
find_keys.js
|
||
create_workflow.js
|
||
*.bak
|
||
*.log
|