init
This commit is contained in:
118
.gitignore
vendored
Normal file
118
.gitignore
vendored
Normal file
@@ -0,0 +1,118 @@
|
||||
# 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-*/
|
||||
examples/my-*/
|
||||
examples/test-*/
|
||||
|
||||
# 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-*/
|
||||
Reference in New Issue
Block a user