You've already forked openaccounting-server
forked from cybercinch/openaccounting-server
39 lines
343 B
Plaintext
39 lines
343 B
Plaintext
|
|
# Git
|
||
|
|
.git
|
||
|
|
.gitignore
|
||
|
|
|
||
|
|
# Documentation
|
||
|
|
README.md
|
||
|
|
*.md
|
||
|
|
|
||
|
|
# Docker
|
||
|
|
Dockerfile
|
||
|
|
.dockerignore
|
||
|
|
|
||
|
|
# Build artifacts
|
||
|
|
server
|
||
|
|
*.exe
|
||
|
|
|
||
|
|
# Development files
|
||
|
|
.vscode/
|
||
|
|
.idea/
|
||
|
|
|
||
|
|
# Local config and data
|
||
|
|
config.json
|
||
|
|
*.db
|
||
|
|
data/
|
||
|
|
|
||
|
|
# Test files
|
||
|
|
*_test.go
|
||
|
|
test*
|
||
|
|
|
||
|
|
# Temporary files
|
||
|
|
*.tmp
|
||
|
|
*.log
|
||
|
|
|
||
|
|
# OS files
|
||
|
|
.DS_Store
|
||
|
|
Thumbs.db
|
||
|
|
|
||
|
|
# Dependencies (will be downloaded)
|
||
|
|
vendor/
|