You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
456 B
47 lines
456 B
# 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
|
|
|