# Git files .git .gitignore .gitattributes # Build artifacts gitcitadel-online server *.exe *.dll *.so *.dylib # Test files *_test.go *.test # Documentation *.md !README.md LICENSE.md # IDE files .vscode .idea *.swp *.swo *~ # OS files .DS_Store Thumbs.db # Cache and temporary files cache/ *.log *.tmp # Node modules (will be installed in container) node_modules/ # Config file (should be mounted) config.yaml # Development files .env .env.local