mirror of
https://github.com/kjanat/articulate-parser.git
synced 2026-01-16 08:22:09 +01:00
* Add comprehensive Docker support with multi-stage builds * Set up GitHub Container Registry integration * Enhance CI/CD workflows with Docker build and push capabilities * Add --help and --version flags to main application * Update documentation with Docker usage examples * Implement security best practices for container deployment
69 lines
627 B
Plaintext
69 lines
627 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# CI/CD
|
|
.github
|
|
.codecov.yml
|
|
|
|
# Documentation
|
|
README.md
|
|
*.md
|
|
docs/
|
|
|
|
# Build artifacts
|
|
build/
|
|
dist/
|
|
*.exe
|
|
*.tar.gz
|
|
*.zip
|
|
|
|
# Test files
|
|
*_test.go
|
|
test_*.go
|
|
test/
|
|
coverage.out
|
|
coverage.html
|
|
*.log
|
|
|
|
# Development
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS specific
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Output and temporary files
|
|
output/
|
|
tmp/
|
|
temp/
|
|
|
|
# Node.js (if any)
|
|
node_modules/
|
|
npm-debug.log
|
|
yarn-error.log
|
|
|
|
# Python (if any)
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
env/
|
|
venv/
|
|
|
|
# Scripts (build scripts not needed in container)
|
|
scripts/
|
|
|
|
# Sample files
|
|
articulate-sample.json
|
|
test_input.json
|
|
|
|
# License
|
|
LICENSE
|