121 lines
1.4 KiB
Plaintext
121 lines
1.4 KiB
Plaintext
# MyceliumCloud Manual - .gitignore
|
|
|
|
# Kubernetes and Mycelium Configuration Files
|
|
kubeconfig
|
|
kubeconfig.txt
|
|
*.kubeconfig
|
|
*.config
|
|
config
|
|
mycelium
|
|
mycelium-private
|
|
*.pem
|
|
*.key
|
|
*.crt
|
|
*.cert
|
|
|
|
# Mycelium Binary and Executables
|
|
mycelium
|
|
mycelium-*
|
|
*.mycelium
|
|
|
|
# Kubernetes Secrets and Sensitive Data
|
|
secrets/
|
|
*.secret
|
|
secrets.yaml
|
|
secrets.yml
|
|
|
|
# IDE and Editor Files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs and Temporary Files
|
|
*.log
|
|
*.log.*
|
|
logs/
|
|
tmp/
|
|
temp/
|
|
.tmp/
|
|
|
|
# Mycelium Specific
|
|
mycelium.log
|
|
mycelium.pid
|
|
mycelium.log.*
|
|
|
|
# Build Artifacts
|
|
dist/
|
|
build/
|
|
*.tar.gz
|
|
*.tgz
|
|
*.zip
|
|
|
|
# Package Management
|
|
node_modules/
|
|
package-lock.json
|
|
yarn.lock
|
|
*.egg-info/
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
|
|
# User Created Example Directories
|
|
my-app/
|
|
my-project/
|
|
test-app/
|
|
demo-*/
|
|
|
|
# Allow nginx-mycelium example files to be tracked
|
|
!examples/nginx-mycelium/*.yaml
|
|
!examples/nginx-mycelium/*.md
|
|
!examples/nginx-mycelium/*.sh
|
|
|
|
# Development and Testing
|
|
.nohup.out
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Application State
|
|
*.state
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# Backup Files
|
|
*.bak
|
|
*.backup
|
|
*~
|
|
|
|
# Specific MyceliumCloud User Files
|
|
my-cluster/
|
|
my-deployment/
|
|
app-*/
|
|
service-*/
|
|
deployment-*/
|
|
*.myceliumcloud/
|
|
|
|
# Local Environment Files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Generated Documentation (if any)
|
|
docs/generated/
|
|
*.generated.*
|
|
|
|
# Test and Development Clusters
|
|
.kube-test/
|
|
.kube-dev/
|
|
test-*/
|
|
dev-*/ |