- Fix docker-compose.yaml: mount config.dev.yaml instead of nonexistent configs/config.yaml - Add deployments/config.dev.yaml with Docker service names and dev defaults for zero-setup make docker-up - Expand .env.example with all SILO_* and LDAP_* variables - Update config.example.yaml hostnames to localhost with Docker comments - Add deployments/config.docker.yaml to .gitignore (generated file)
56 lines
608 B
Plaintext
56 lines
608 B
Plaintext
# Binaries
|
|
/silo
|
|
/silod
|
|
*.exe
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test binary, built with `go test -c`
|
|
*.test
|
|
|
|
# Output of the go coverage tool
|
|
*.out
|
|
|
|
# Go workspace
|
|
go.work
|
|
go.work.sum
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Config with secrets
|
|
config.yaml
|
|
*.env
|
|
deployments/config.docker.yaml
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.Python
|
|
*.egg-info/
|
|
.eggs/
|
|
dist/
|
|
# Python build output (not build/package/ which holds our Dockerfile)
|
|
/build/*
|
|
!/build/package/
|
|
|
|
# FreeCAD
|
|
*.FCStd1
|
|
*.FCBak
|
|
|
|
# Web frontend
|
|
web/node_modules/
|
|
web/dist/
|
|
web/*.tsbuildinfo
|
|
web/vite.config.d.ts
|
|
web/vite.config.js
|