parent
2cd1b05037
commit
d07025a2ea
@ -0,0 +1,6 @@
|
|||||||
|
[tool.commitizen]
|
||||||
|
name = "cz_conventional_commits"
|
||||||
|
tag_format = "$version"
|
||||||
|
version_scheme = "semver"
|
||||||
|
version = "0.5.4"
|
||||||
|
update_changelog_on_bump = true
|
||||||
@ -0,0 +1,32 @@
|
|||||||
|
# Include any files or directories that you don't want to be copied to your
|
||||||
|
# container here (e.g., local build artifacts, temporary files, etc.).
|
||||||
|
#
|
||||||
|
# For more help, visit the .dockerignore file reference guide at
|
||||||
|
# https://docs.docker.com/go/build-context-dockerignore/
|
||||||
|
|
||||||
|
**/.DS_Store
|
||||||
|
**/.classpath
|
||||||
|
**/.dockerignore
|
||||||
|
**/.env
|
||||||
|
**/.git
|
||||||
|
**/.gitignore
|
||||||
|
**/.project
|
||||||
|
**/.settings
|
||||||
|
**/.toolstarget
|
||||||
|
**/.vs
|
||||||
|
**/.vscode
|
||||||
|
**/*.*proj.user
|
||||||
|
**/*.dbmdl
|
||||||
|
**/*.jfm
|
||||||
|
**/bin
|
||||||
|
**/charts
|
||||||
|
**/docker-compose*
|
||||||
|
**/compose*
|
||||||
|
**/Dockerfile*
|
||||||
|
**/node_modules
|
||||||
|
**/npm-debug.log
|
||||||
|
**/obj
|
||||||
|
**/secrets.dev.yaml
|
||||||
|
**/values.dev.yaml
|
||||||
|
LICENSE
|
||||||
|
README.md
|
||||||
@ -0,0 +1,50 @@
|
|||||||
|
name: Go
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- '**.go'
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- '**.go'
|
||||||
|
workflow_dispatch: { }
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Set up Go
|
||||||
|
uses: actions/setup-go@v4
|
||||||
|
with:
|
||||||
|
go-version: '^1.20'
|
||||||
|
cache: true
|
||||||
|
|
||||||
|
- uses: bazelbuild/setup-bazelisk@v2
|
||||||
|
|
||||||
|
- name: Mount bazel cache
|
||||||
|
id: cache-bazel
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: "/home/runner/.cache/bazel"
|
||||||
|
key: bazel
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: make build
|
||||||
|
|
||||||
|
- name: Test
|
||||||
|
run: make test
|
||||||
|
|
||||||
|
- name: coverage
|
||||||
|
run: make coverage
|
||||||
|
|
||||||
|
- name: SonarCloud Scan
|
||||||
|
uses: SonarSource/sonarcloud-github-action@master
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
|
||||||
|
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
|
||||||
@ -0,0 +1,63 @@
|
|||||||
|
name: golangci-lint
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- '**.go'
|
||||||
|
pull_request:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
paths:
|
||||||
|
- '**.go'
|
||||||
|
workflow_dispatch: { }
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
# Optional: allow read access to pull request. Use with `only-new-issues` option.
|
||||||
|
# pull-requests: read
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
golangci:
|
||||||
|
name: lint
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- uses: actions/setup-go@v4
|
||||||
|
with:
|
||||||
|
go-version: '^1.21'
|
||||||
|
cache: true
|
||||||
|
- name: golangci-lint
|
||||||
|
uses: golangci/golangci-lint-action@v3
|
||||||
|
with:
|
||||||
|
# Require: The version of golangci-lint to use.
|
||||||
|
# When `install-mode` is `binary` (default) the value can be v1.2 or v1.2.3 or `latest` to use the latest version.
|
||||||
|
# When `install-mode` is `goinstall` the value can be v1.2.3, `latest`, or the hash of a commit.
|
||||||
|
version: v1.54
|
||||||
|
|
||||||
|
# Optional: working directory, useful for monorepos
|
||||||
|
# working-directory: somedir
|
||||||
|
|
||||||
|
# Optional: golangci-lint command line arguments.
|
||||||
|
#
|
||||||
|
# Note: By default, the `.golangci.yml` file should be at the root of the repository.
|
||||||
|
# The location of the configuration file can be changed by using `--config=`
|
||||||
|
# args: --timeout=30m --config=/my/path/.golangci.yml --issues-exit-code=0
|
||||||
|
|
||||||
|
# Optional: show only new issues if it's a pull request. The default value is `false`.
|
||||||
|
# only-new-issues: true
|
||||||
|
|
||||||
|
# Optional: if set to true, then all caching functionality will be completely disabled,
|
||||||
|
# takes precedence over all other caching options.
|
||||||
|
# skip-cache: true
|
||||||
|
|
||||||
|
# Optional: if set to true, then the action won't cache or restore ~/go/pkg.
|
||||||
|
# skip-pkg-cache: true
|
||||||
|
|
||||||
|
# Optional: if set to true, then the action won't cache or restore ~/.cache/go-build.
|
||||||
|
# skip-build-cache: true
|
||||||
|
|
||||||
|
# Optional: The mode to install golangci-lint. It can be 'binary' or 'goinstall'.
|
||||||
|
# install-mode: "goinstall"
|
||||||
@ -0,0 +1,20 @@
|
|||||||
|
name: Code Review GPT
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
branches: [main]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
run_code_review:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Code Review GPT
|
||||||
|
uses: mattzcarey/code-review-gpt@v0.1.8
|
||||||
|
with:
|
||||||
|
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
|
||||||
|
MODEL: 'gpt-4o'
|
||||||
|
GITHUB_TOKEN: ${{ github.token }}
|
||||||
@ -0,0 +1,58 @@
|
|||||||
|
name: Release
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- '[0-9]+.[0-9]+.[0-9]+'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Set up Go
|
||||||
|
uses: actions/setup-go@v4
|
||||||
|
with:
|
||||||
|
go-version: '^1.20'
|
||||||
|
cache: true
|
||||||
|
|
||||||
|
- uses: bazelbuild/setup-bazelisk@v2
|
||||||
|
|
||||||
|
- name: Mount bazel cache
|
||||||
|
id: cache-bazel
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: "/home/runner/.cache/bazel"
|
||||||
|
key: bazel
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: make build
|
||||||
|
|
||||||
|
- name: Test
|
||||||
|
run: make test
|
||||||
|
|
||||||
|
- name: Docker Login
|
||||||
|
uses: docker/login-action@v2.1.0
|
||||||
|
with:
|
||||||
|
registry: ghcr.io
|
||||||
|
username: ${{ github.actor }}
|
||||||
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Build and push
|
||||||
|
run: |
|
||||||
|
make docker-push
|
||||||
|
|
||||||
|
create-release:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
needs:
|
||||||
|
- build
|
||||||
|
steps:
|
||||||
|
- name: Create Release
|
||||||
|
uses: ncipollo/release-action@v1.12.0
|
||||||
|
with:
|
||||||
|
generateReleaseNotes: true
|
||||||
|
prerelease: false
|
||||||
|
makeLatest: true
|
||||||
@ -1,17 +1,500 @@
|
|||||||
.idea
|
# Created by https://www.toptal.com/developers/gitignore/api/windows,linux,macos,vim,visualstudiocode,intellij+all,go,python,rust,react,helm,ansible,terraform
|
||||||
|
# Edit at https://www.toptal.com/developers/gitignore?templates=windows,linux,macos,vim,visualstudiocode,intellij+all,go,python,rust,react,helm,ansible,terraform
|
||||||
|
|
||||||
|
### Ansible ###
|
||||||
|
*.retry
|
||||||
|
|
||||||
|
### Go ###
|
||||||
|
# If you prefer the allow list template instead of the deny list, see community template:
|
||||||
|
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
|
||||||
|
#
|
||||||
|
# Binaries for programs and plugins
|
||||||
|
*.exe
|
||||||
|
*.exe~
|
||||||
|
*.dll
|
||||||
|
*.so
|
||||||
|
*.dylib
|
||||||
|
|
||||||
|
# Test binary, built with `go test -c`
|
||||||
|
*.test
|
||||||
|
|
||||||
|
# Output of the go coverage tool, specifically when used with LiteIDE
|
||||||
|
*.out
|
||||||
|
|
||||||
|
# Dependency directories (remove the comment below to include it)
|
||||||
|
# vendor/
|
||||||
|
|
||||||
|
# Go workspace file
|
||||||
|
go.work
|
||||||
|
|
||||||
|
### Helm ###
|
||||||
|
# Chart dependencies
|
||||||
|
**/charts/*.tgz
|
||||||
|
|
||||||
|
### Intellij+all ###
|
||||||
|
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
|
||||||
|
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
||||||
|
|
||||||
|
# User-specific stuff
|
||||||
|
.idea/**/workspace.xml
|
||||||
|
.idea/**/tasks.xml
|
||||||
|
.idea/**/usage.statistics.xml
|
||||||
|
.idea/**/dictionaries
|
||||||
|
.idea/**/shelf
|
||||||
|
|
||||||
|
# AWS User-specific
|
||||||
|
.idea/**/aws.xml
|
||||||
|
|
||||||
|
# Generated files
|
||||||
|
.idea/**/contentModel.xml
|
||||||
|
|
||||||
|
# Sensitive or high-churn files
|
||||||
|
.idea/**/dataSources/
|
||||||
|
.idea/**/dataSources.ids
|
||||||
|
.idea/**/dataSources.local.xml
|
||||||
|
.idea/**/sqlDataSources.xml
|
||||||
|
.idea/**/dynamic.xml
|
||||||
|
.idea/**/uiDesigner.xml
|
||||||
|
.idea/**/dbnavigator.xml
|
||||||
|
|
||||||
|
# Gradle
|
||||||
|
.idea/**/gradle.xml
|
||||||
|
.idea/**/libraries
|
||||||
|
|
||||||
|
# Gradle and Maven with auto-import
|
||||||
|
# When using Gradle or Maven with auto-import, you should exclude module files,
|
||||||
|
# since they will be recreated, and may cause churn. Uncomment if using
|
||||||
|
# auto-import.
|
||||||
|
# .idea/artifacts
|
||||||
|
# .idea/compiler.xml
|
||||||
|
# .idea/jarRepositories.xml
|
||||||
|
# .idea/modules.xml
|
||||||
|
# .idea/*.iml
|
||||||
|
# .idea/modules
|
||||||
|
# *.iml
|
||||||
|
# *.ipr
|
||||||
|
|
||||||
|
# CMake
|
||||||
|
cmake-build-*/
|
||||||
|
|
||||||
|
# Mongo Explorer plugin
|
||||||
|
.idea/**/mongoSettings.xml
|
||||||
|
|
||||||
|
# File-based project format
|
||||||
|
*.iws
|
||||||
|
|
||||||
|
# IntelliJ
|
||||||
|
out/
|
||||||
|
|
||||||
|
# mpeltonen/sbt-idea plugin
|
||||||
|
.idea_modules/
|
||||||
|
|
||||||
|
# JIRA plugin
|
||||||
|
atlassian-ide-plugin.xml
|
||||||
|
|
||||||
|
# Cursive Clojure plugin
|
||||||
|
.idea/replstate.xml
|
||||||
|
|
||||||
|
# SonarLint plugin
|
||||||
|
.idea/sonarlint/
|
||||||
|
|
||||||
|
# Crashlytics plugin (for Android Studio and IntelliJ)
|
||||||
|
com_crashlytics_export_strings.xml
|
||||||
|
crashlytics.properties
|
||||||
|
crashlytics-build.properties
|
||||||
|
fabric.properties
|
||||||
|
|
||||||
|
# Editor-based Rest Client
|
||||||
|
.idea/httpRequests
|
||||||
|
|
||||||
|
# Android studio 3.1+ serialized cache file
|
||||||
|
.idea/caches/build_file_checksums.ser
|
||||||
|
|
||||||
|
### Intellij+all Patch ###
|
||||||
|
# Ignore everything but code style settings and run configurations
|
||||||
|
# that are supposed to be shared within teams.
|
||||||
|
|
||||||
|
.idea/*
|
||||||
|
|
||||||
|
!.idea/codeStyles
|
||||||
|
!.idea/runConfigurations
|
||||||
|
|
||||||
|
### Linux ###
|
||||||
|
*~
|
||||||
|
|
||||||
|
# temporary files which can be created if a process still has a handle open of a deleted file
|
||||||
|
.fuse_hidden*
|
||||||
|
|
||||||
|
# KDE directory preferences
|
||||||
|
.directory
|
||||||
|
|
||||||
|
# Linux trash folder which might appear on any partition or disk
|
||||||
|
.Trash-*
|
||||||
|
|
||||||
|
# .nfs files are created when an open file is removed but is still being accessed
|
||||||
|
.nfs*
|
||||||
|
|
||||||
|
### macOS ###
|
||||||
|
# General
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
.AppleDouble
|
||||||
|
.LSOverride
|
||||||
|
|
||||||
|
# Icon must end with two \r
|
||||||
|
Icon
|
||||||
|
|
||||||
|
|
||||||
|
# Thumbnails
|
||||||
|
._*
|
||||||
|
|
||||||
|
# Files that might appear in the root of a volume
|
||||||
|
.DocumentRevisions-V100
|
||||||
|
.fseventsd
|
||||||
|
.Spotlight-V100
|
||||||
|
.TemporaryItems
|
||||||
|
.Trashes
|
||||||
|
.VolumeIcon.icns
|
||||||
|
.com.apple.timemachine.donotpresent
|
||||||
|
|
||||||
|
# Directories potentially created on remote AFP share
|
||||||
|
.AppleDB
|
||||||
|
.AppleDesktop
|
||||||
|
Network Trash Folder
|
||||||
|
Temporary Items
|
||||||
|
.apdisk
|
||||||
|
|
||||||
|
### macOS Patch ###
|
||||||
|
# iCloud generated files
|
||||||
|
*.icloud
|
||||||
|
|
||||||
|
### Python ###
|
||||||
|
# Byte-compiled / optimized / DLL files
|
||||||
|
__pycache__/
|
||||||
|
*.py[cod]
|
||||||
|
*$py.class
|
||||||
|
|
||||||
|
# C extensions
|
||||||
|
|
||||||
|
# Distribution / packaging
|
||||||
|
.Python
|
||||||
|
build/
|
||||||
|
develop-eggs/
|
||||||
|
dist/
|
||||||
|
downloads/
|
||||||
|
eggs/
|
||||||
|
.eggs/
|
||||||
|
lib/
|
||||||
|
lib64/
|
||||||
|
parts/
|
||||||
|
sdist/
|
||||||
|
var/
|
||||||
|
wheels/
|
||||||
|
share/python-wheels/
|
||||||
|
*.egg-info/
|
||||||
|
.installed.cfg
|
||||||
|
*.egg
|
||||||
|
MANIFEST
|
||||||
|
|
||||||
|
# PyInstaller
|
||||||
|
# Usually these files are written by a python script from a template
|
||||||
|
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
||||||
|
*.manifest
|
||||||
|
*.spec
|
||||||
|
|
||||||
|
# Installer logs
|
||||||
|
pip-log.txt
|
||||||
|
pip-delete-this-directory.txt
|
||||||
|
|
||||||
|
# Unit test / coverage reports
|
||||||
|
htmlcov/
|
||||||
|
.tox/
|
||||||
|
.nox/
|
||||||
|
.coverage
|
||||||
|
.coverage.*
|
||||||
|
.cache
|
||||||
|
nosetests.xml
|
||||||
|
coverage.xml
|
||||||
|
*.cover
|
||||||
|
*.py,cover
|
||||||
|
.hypothesis/
|
||||||
|
.pytest_cache/
|
||||||
|
cover/
|
||||||
|
|
||||||
|
# Translations
|
||||||
|
*.mo
|
||||||
|
*.pot
|
||||||
|
|
||||||
|
# Django stuff:
|
||||||
|
*.log
|
||||||
|
local_settings.py
|
||||||
|
db.sqlite3
|
||||||
|
db.sqlite3-journal
|
||||||
|
|
||||||
|
# Flask stuff:
|
||||||
|
instance/
|
||||||
|
.webassets-cache
|
||||||
|
|
||||||
|
# Scrapy stuff:
|
||||||
|
.scrapy
|
||||||
|
|
||||||
|
# Sphinx documentation
|
||||||
|
docs/_build/
|
||||||
|
|
||||||
|
# PyBuilder
|
||||||
|
.pybuilder/
|
||||||
|
target/
|
||||||
|
|
||||||
|
# Jupyter Notebook
|
||||||
|
.ipynb_checkpoints
|
||||||
|
|
||||||
|
# IPython
|
||||||
|
profile_default/
|
||||||
|
ipython_config.py
|
||||||
|
|
||||||
|
# pyenv
|
||||||
|
# For a library or package, you might want to ignore these files since the code is
|
||||||
|
# intended to run in multiple environments; otherwise, check them in:
|
||||||
|
# .python-version
|
||||||
|
|
||||||
|
# pipenv
|
||||||
|
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
||||||
|
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
||||||
|
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
||||||
|
# install all needed dependencies.
|
||||||
|
#Pipfile.lock
|
||||||
|
|
||||||
|
# poetry
|
||||||
|
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
||||||
|
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
||||||
|
# commonly ignored for libraries.
|
||||||
|
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
||||||
|
#poetry.lock
|
||||||
|
|
||||||
|
# pdm
|
||||||
|
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
||||||
|
#pdm.lock
|
||||||
|
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
||||||
|
# in version control.
|
||||||
|
# https://pdm.fming.dev/#use-with-ide
|
||||||
|
.pdm.toml
|
||||||
|
|
||||||
|
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
||||||
|
__pypackages__/
|
||||||
|
|
||||||
|
# Celery stuff
|
||||||
|
celerybeat-schedule
|
||||||
|
celerybeat.pid
|
||||||
|
|
||||||
|
# SageMath parsed files
|
||||||
|
*.sage.py
|
||||||
|
|
||||||
|
# Environments
|
||||||
.env
|
.env
|
||||||
goravel/public/admin
|
.venv
|
||||||
goravel/public/app
|
env/
|
||||||
*.exe
|
venv/
|
||||||
/storage/*
|
ENV/
|
||||||
!/storage/readme.md
|
env.bak/
|
||||||
./goravel
|
venv.bak/
|
||||||
./goravel.db
|
|
||||||
frp/fipc.ini
|
# Spyder project settings
|
||||||
goravel/tmp/*
|
.spyderproject
|
||||||
|
.spyproject
|
||||||
bazel-bin/*
|
|
||||||
bazel-go/*
|
# Rope project settings
|
||||||
bazel-out/*
|
.ropeproject
|
||||||
bazel-testlogs/*
|
|
||||||
|
# mkdocs documentation
|
||||||
|
/site
|
||||||
|
|
||||||
|
# mypy
|
||||||
|
.mypy_cache/
|
||||||
|
.dmypy.json
|
||||||
|
dmypy.json
|
||||||
|
|
||||||
|
# Pyre type checker
|
||||||
|
.pyre/
|
||||||
|
|
||||||
|
# pytype static type analyzer
|
||||||
|
.pytype/
|
||||||
|
|
||||||
|
# Cython debug symbols
|
||||||
|
cython_debug/
|
||||||
|
|
||||||
|
# PyCharm
|
||||||
|
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
||||||
|
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
||||||
|
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
||||||
|
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
||||||
|
#.idea/
|
||||||
|
|
||||||
|
### Python Patch ###
|
||||||
|
# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration
|
||||||
|
poetry.toml
|
||||||
|
|
||||||
|
# ruff
|
||||||
|
.ruff_cache/
|
||||||
|
|
||||||
|
# LSP config files
|
||||||
|
pyrightconfig.json
|
||||||
|
|
||||||
|
### react ###
|
||||||
|
.DS_*
|
||||||
|
logs
|
||||||
|
**/*.backup.*
|
||||||
|
**/*.back.*
|
||||||
|
|
||||||
|
node_modules
|
||||||
|
bower_components
|
||||||
|
|
||||||
|
*.sublime*
|
||||||
|
|
||||||
|
psd
|
||||||
|
thumb
|
||||||
|
sketch
|
||||||
|
|
||||||
|
### Rust ###
|
||||||
|
# Generated by Cargo
|
||||||
|
# will have compiled files and executables
|
||||||
|
debug/
|
||||||
|
|
||||||
|
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
|
||||||
|
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
|
||||||
|
Cargo.lock
|
||||||
|
|
||||||
|
# These are backup files generated by rustfmt
|
||||||
|
**/*.rs.bk
|
||||||
|
|
||||||
|
# MSVC Windows builds of rustc generate these, which store debugging information
|
||||||
|
*.pdb
|
||||||
|
|
||||||
|
### Terraform ###
|
||||||
|
# Local .terraform directories
|
||||||
|
**/.terraform/*
|
||||||
|
|
||||||
|
# .tfstate files
|
||||||
|
*.tfstate
|
||||||
|
*.tfstate.*
|
||||||
|
|
||||||
|
# Crash log files
|
||||||
|
crash.log
|
||||||
|
crash.*.log
|
||||||
|
|
||||||
|
# Exclude all .tfvars files, which are likely to contain sensitive data, such as
|
||||||
|
# password, private keys, and other secrets. These should not be part of version
|
||||||
|
# control as they are data points which are potentially sensitive and subject
|
||||||
|
# to change depending on the environment.
|
||||||
|
*.tfvars
|
||||||
|
*.tfvars.json
|
||||||
|
|
||||||
|
# Ignore override files as they are usually used to override resources locally and so
|
||||||
|
# are not checked in
|
||||||
|
override.tf
|
||||||
|
override.tf.json
|
||||||
|
*_override.tf
|
||||||
|
*_override.tf.json
|
||||||
|
|
||||||
|
# Include override files you do wish to add to version control using negated pattern
|
||||||
|
# !example_override.tf
|
||||||
|
|
||||||
|
# Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan
|
||||||
|
# example: *tfplan*
|
||||||
|
|
||||||
|
# Ignore CLI configuration files
|
||||||
|
.terraformrc
|
||||||
|
terraform.rc
|
||||||
|
|
||||||
|
### Vim ###
|
||||||
|
# Swap
|
||||||
|
[._]*.s[a-v][a-z]
|
||||||
|
!*.svg # comment out if you don't need vector files
|
||||||
|
[._]*.sw[a-p]
|
||||||
|
[._]s[a-rt-v][a-z]
|
||||||
|
[._]ss[a-gi-z]
|
||||||
|
[._]sw[a-p]
|
||||||
|
|
||||||
|
# Session
|
||||||
|
Session.vim
|
||||||
|
Sessionx.vim
|
||||||
|
|
||||||
|
# Temporary
|
||||||
|
.netrwhist
|
||||||
|
# Auto-generated tag files
|
||||||
|
tags
|
||||||
|
# Persistent undo
|
||||||
|
[._]*.un~
|
||||||
|
|
||||||
|
### VisualStudioCode ###
|
||||||
|
.vscode/*
|
||||||
|
!.vscode/settings.json
|
||||||
|
!.vscode/tasks.json
|
||||||
|
!.vscode/launch.json
|
||||||
|
!.vscode/extensions.json
|
||||||
|
!.vscode/*.code-snippets
|
||||||
|
|
||||||
|
# Local History for Visual Studio Code
|
||||||
|
.history/
|
||||||
|
|
||||||
|
# Built Visual Studio Code Extensions
|
||||||
|
*.vsix
|
||||||
|
|
||||||
|
### VisualStudioCode Patch ###
|
||||||
|
# Ignore all local history of files
|
||||||
|
.history
|
||||||
|
.ionide
|
||||||
|
|
||||||
|
### Windows ###
|
||||||
|
# Windows thumbnail cache files
|
||||||
|
Thumbs.db
|
||||||
|
Thumbs.db:encryptable
|
||||||
|
ehthumbs.db
|
||||||
|
ehthumbs_vista.db
|
||||||
|
|
||||||
|
# Dump file
|
||||||
|
*.stackdump
|
||||||
|
|
||||||
|
# Folder config file
|
||||||
|
[Dd]esktop.ini
|
||||||
|
|
||||||
|
# Recycle Bin used on file shares
|
||||||
|
$RECYCLE.BIN/
|
||||||
|
|
||||||
|
# Windows Installer files
|
||||||
|
*.cab
|
||||||
|
*.msi
|
||||||
|
*.msix
|
||||||
|
*.msm
|
||||||
|
*.msp
|
||||||
|
|
||||||
|
# Windows shortcuts
|
||||||
|
*.lnk
|
||||||
|
|
||||||
|
# End of https://www.toptal.com/developers/gitignore/api/windows,linux,macos,vim,visualstudiocode,intellij+all,go,python,rust,react,helm,ansible,terraform
|
||||||
|
|
||||||
|
# Created by https://www.toptal.com/developers/gitignore/api/bazel
|
||||||
|
# Edit at https://www.toptal.com/developers/gitignore?templates=bazel
|
||||||
|
|
||||||
|
### Bazel ###
|
||||||
|
# gitignore template for Bazel build system
|
||||||
|
# website: https://bazel.build/
|
||||||
|
|
||||||
|
# Ignore all bazel-* symlinks. There is no full list since this can change
|
||||||
|
# based on the name of the directory bazel is cloned into.
|
||||||
|
/bazel-*
|
||||||
|
|
||||||
|
# Directories for the Bazel IntelliJ plugin containing the generated
|
||||||
|
# IntelliJ project files and plugin configuration. Seperate directories are
|
||||||
|
# for the IntelliJ, Android Studio and CLion versions of the plugin.
|
||||||
|
/.ijwb/
|
||||||
|
/.aswb/
|
||||||
|
/.clwb/
|
||||||
|
|
||||||
|
# End of https://www.toptal.com/developers/gitignore/api/bazel
|
||||||
|
|
||||||
|
# Serverless directories
|
||||||
|
.serverless
|
||||||
|
|
||||||
|
# golang output binary directory
|
||||||
|
bin
|
||||||
|
|
||||||
|
deployments
|
||||||
|
|||||||
@ -0,0 +1,322 @@
|
|||||||
|
# This code is licensed under the terms of the MIT license https://opensource.org/license/mit
|
||||||
|
# Copyright (c) 2021 Marat Reymers
|
||||||
|
|
||||||
|
## Golden config for golangci-lint v1.54.2
|
||||||
|
#
|
||||||
|
# This is the best config for golangci-lint based on my experience and opinion.
|
||||||
|
# It is very strict, but not extremely strict.
|
||||||
|
# Feel free to adapt and change it for your needs.
|
||||||
|
|
||||||
|
run:
|
||||||
|
# Timeout for analysis, e.g. 30s, 5m.
|
||||||
|
# Default: 1m
|
||||||
|
timeout: 1m
|
||||||
|
|
||||||
|
|
||||||
|
# This file contains only configs which differ from defaults.
|
||||||
|
# All possible options can be found here https://github.com/golangci/golangci-lint/blob/master/.golangci.reference.yml
|
||||||
|
linters-settings:
|
||||||
|
cyclop:
|
||||||
|
# The maximal code complexity to report.
|
||||||
|
# Default: 10
|
||||||
|
max-complexity: 30
|
||||||
|
# The maximal average package complexity.
|
||||||
|
# If it's higher than 0.0 (float) the check is enabled
|
||||||
|
# Default: 0.0
|
||||||
|
package-average: 10.0
|
||||||
|
|
||||||
|
errcheck:
|
||||||
|
# Report about not checking of errors in type assertions: `a := b.(MyStruct)`.
|
||||||
|
# Such cases aren't reported by default.
|
||||||
|
# Default: false
|
||||||
|
check-type-assertions: true
|
||||||
|
|
||||||
|
exhaustive:
|
||||||
|
# Program elements to check for exhaustiveness.
|
||||||
|
# Default: [ switch ]
|
||||||
|
check:
|
||||||
|
- switch
|
||||||
|
- map
|
||||||
|
|
||||||
|
exhaustruct:
|
||||||
|
# List of regular expressions to exclude struct packages and names from check.
|
||||||
|
# Default: []
|
||||||
|
exclude:
|
||||||
|
# std libs
|
||||||
|
- "^net/http.Client$"
|
||||||
|
- "^net/http.Cookie$"
|
||||||
|
- "^net/http.Request$"
|
||||||
|
- "^net/http.Response$"
|
||||||
|
- "^net/http.Server$"
|
||||||
|
- "^net/http.Transport$"
|
||||||
|
- "^net/url.URL$"
|
||||||
|
- "^os/exec.Cmd$"
|
||||||
|
- "^reflect.StructField$"
|
||||||
|
# public libs
|
||||||
|
- "^github.com/Shopify/sarama.Config$"
|
||||||
|
- "^github.com/Shopify/sarama.ProducerMessage$"
|
||||||
|
- "^github.com/mitchellh/mapstructure.DecoderConfig$"
|
||||||
|
- "^github.com/prometheus/client_golang/.+Opts$"
|
||||||
|
- "^github.com/spf13/cobra.Command$"
|
||||||
|
- "^github.com/spf13/cobra.CompletionOptions$"
|
||||||
|
- "^github.com/stretchr/testify/mock.Mock$"
|
||||||
|
- "^github.com/testcontainers/testcontainers-go.+Request$"
|
||||||
|
- "^github.com/testcontainers/testcontainers-go.FromDockerfile$"
|
||||||
|
- "^golang.org/x/tools/go/analysis.Analyzer$"
|
||||||
|
- "^google.golang.org/protobuf/.+Options$"
|
||||||
|
- "^gopkg.in/yaml.v3.Node$"
|
||||||
|
|
||||||
|
funlen:
|
||||||
|
# Checks the number of lines in a function.
|
||||||
|
# If lower than 0, disable the check.
|
||||||
|
# Default: 60
|
||||||
|
lines: 100
|
||||||
|
# Checks the number of statements in a function.
|
||||||
|
# If lower than 0, disable the check.
|
||||||
|
# Default: 40
|
||||||
|
statements: 50
|
||||||
|
# Ignore comments when counting lines.
|
||||||
|
# Default false
|
||||||
|
ignore-comments: true
|
||||||
|
|
||||||
|
gocognit:
|
||||||
|
# Minimal code complexity to report.
|
||||||
|
# Default: 30 (but we recommend 10-20)
|
||||||
|
min-complexity: 20
|
||||||
|
|
||||||
|
gocritic:
|
||||||
|
# Settings passed to gocritic.
|
||||||
|
# The settings key is the name of a supported gocritic checker.
|
||||||
|
# The list of supported checkers can be find in https://go-critic.github.io/overview.
|
||||||
|
settings:
|
||||||
|
captLocal:
|
||||||
|
# Whether to restrict checker to params only.
|
||||||
|
# Default: true
|
||||||
|
paramsOnly: false
|
||||||
|
underef:
|
||||||
|
# Whether to skip (*x).method() calls where x is a pointer receiver.
|
||||||
|
# Default: true
|
||||||
|
skipRecvDeref: false
|
||||||
|
|
||||||
|
gomnd:
|
||||||
|
# List of function patterns to exclude from analysis.
|
||||||
|
# Values always ignored: `time.Date`,
|
||||||
|
# `strconv.FormatInt`, `strconv.FormatUint`, `strconv.FormatFloat`,
|
||||||
|
# `strconv.ParseInt`, `strconv.ParseUint`, `strconv.ParseFloat`.
|
||||||
|
# Default: []
|
||||||
|
ignored-functions:
|
||||||
|
- flag.Arg
|
||||||
|
- flag.Duration.*
|
||||||
|
- flag.Float.*
|
||||||
|
- flag.Int.*
|
||||||
|
- flag.Uint.*
|
||||||
|
- os.Chmod
|
||||||
|
- os.Mkdir.*
|
||||||
|
- os.OpenFile
|
||||||
|
- os.WriteFile
|
||||||
|
- prometheus.ExponentialBuckets.*
|
||||||
|
- prometheus.LinearBuckets
|
||||||
|
|
||||||
|
gomodguard:
|
||||||
|
blocked:
|
||||||
|
# List of blocked modules.
|
||||||
|
# Default: []
|
||||||
|
modules:
|
||||||
|
- github.com/golang/protobuf:
|
||||||
|
recommendations:
|
||||||
|
- google.golang.org/protobuf
|
||||||
|
reason: "see https://developers.google.com/protocol-buffers/docs/reference/go/faq#modules"
|
||||||
|
- github.com/satori/go.uuid:
|
||||||
|
recommendations:
|
||||||
|
- github.com/google/uuid
|
||||||
|
reason: "satori's package is not maintained"
|
||||||
|
- github.com/gofrs/uuid:
|
||||||
|
recommendations:
|
||||||
|
- github.com/google/uuid
|
||||||
|
reason: "gofrs' package is not go module"
|
||||||
|
|
||||||
|
govet:
|
||||||
|
# Enable all analyzers.
|
||||||
|
# Default: false
|
||||||
|
enable-all: true
|
||||||
|
# Disable analyzers by name.
|
||||||
|
# Run `go tool vet help` to see all analyzers.
|
||||||
|
# Default: []
|
||||||
|
disable:
|
||||||
|
- fieldalignment # too strict
|
||||||
|
# Settings per analyzer.
|
||||||
|
settings:
|
||||||
|
shadow:
|
||||||
|
# Whether to be strict about shadowing; can be noisy.
|
||||||
|
# Default: false
|
||||||
|
strict: true
|
||||||
|
|
||||||
|
nakedret:
|
||||||
|
# Make an issue if func has more lines of code than this setting, and it has naked returns.
|
||||||
|
# Default: 30
|
||||||
|
max-func-lines: 0
|
||||||
|
|
||||||
|
nolintlint:
|
||||||
|
# Exclude following linters from requiring an explanation.
|
||||||
|
# Default: []
|
||||||
|
allow-no-explanation: [ funlen, gocognit, lll ]
|
||||||
|
# Enable to require an explanation of nonzero length after each nolint directive.
|
||||||
|
# Default: false
|
||||||
|
require-explanation: true
|
||||||
|
# Enable to require nolint directives to mention the specific linter being suppressed.
|
||||||
|
# Default: false
|
||||||
|
require-specific: true
|
||||||
|
|
||||||
|
rowserrcheck:
|
||||||
|
# database/sql is always checked
|
||||||
|
# Default: []
|
||||||
|
packages:
|
||||||
|
- github.com/jmoiron/sqlx
|
||||||
|
|
||||||
|
tenv:
|
||||||
|
# The option `all` will run against whole test files (`_test.go`) regardless of method/function signatures.
|
||||||
|
# Otherwise, only methods that take `*testing.T`, `*testing.B`, and `testing.TB` as arguments are checked.
|
||||||
|
# Default: false
|
||||||
|
all: true
|
||||||
|
|
||||||
|
|
||||||
|
linters:
|
||||||
|
disable-all: true
|
||||||
|
enable:
|
||||||
|
## enabled by default
|
||||||
|
- errcheck # checking for unchecked errors, these unchecked errors can be critical bugs in some cases
|
||||||
|
- gosimple # specializes in simplifying a code
|
||||||
|
- govet # reports suspicious constructs, such as Printf calls whose arguments do not align with the format string
|
||||||
|
- ineffassign # detects when assignments to existing variables are not used
|
||||||
|
- staticcheck # is a go vet on steroids, applying a ton of static analysis checks
|
||||||
|
- typecheck # like the front-end of a Go compiler, parses and type-checks Go code
|
||||||
|
# - unused # checks for unused constants, variables, functions and types
|
||||||
|
## disabled by default
|
||||||
|
- asasalint # checks for pass []any as any in variadic func(...any)
|
||||||
|
- asciicheck # checks that your code does not contain non-ASCII identifiers
|
||||||
|
- bidichk # checks for dangerous unicode character sequences
|
||||||
|
- bodyclose # checks whether HTTP response body is closed successfully
|
||||||
|
- cyclop # checks function and package cyclomatic complexity
|
||||||
|
- dupl # tool for code clone detection
|
||||||
|
- durationcheck # checks for two durations multiplied together
|
||||||
|
- errname # checks that sentinel errors are prefixed with the Err and error types are suffixed with the Error
|
||||||
|
- errorlint # finds code that will cause problems with the error wrapping scheme introduced in Go 1.13
|
||||||
|
- execinquery # checks query string in Query function which reads your Go src files and warning it finds
|
||||||
|
- exhaustive # checks exhaustiveness of enum switch statements
|
||||||
|
- exportloopref # checks for pointers to enclosing loop variables
|
||||||
|
# - forbidigo # forbids identifiers
|
||||||
|
- funlen # tool for detection of long functions
|
||||||
|
- gocheckcompilerdirectives # validates go compiler directive comments (//go:)
|
||||||
|
# - gochecknoglobals # checks that no global variables exist
|
||||||
|
# - gochecknoinits # checks that no init functions are present in Go code
|
||||||
|
- gocognit # computes and checks the cognitive complexity of functions
|
||||||
|
- goconst # finds repeated strings that could be replaced by a constant
|
||||||
|
- gocritic # provides diagnostics that check for bugs, performance and style issues
|
||||||
|
- gocyclo # computes and checks the cyclomatic complexity of functions
|
||||||
|
# - godot # checks if comments end in a period
|
||||||
|
- goimports # in addition to fixing imports, goimports also formats your code in the same style as gofmt
|
||||||
|
# - gomnd # detects magic numbers
|
||||||
|
- gomoddirectives # manages the use of 'replace', 'retract', and 'excludes' directives in go.mod
|
||||||
|
- gomodguard # allow and block lists linter for direct Go module dependencies. This is different from depguard where there are different block types for example version constraints and module recommendations
|
||||||
|
- goprintffuncname # checks that printf-like functions are named with f at the end
|
||||||
|
- gosec # inspects source code for security problems
|
||||||
|
- lll # reports long lines
|
||||||
|
- loggercheck # checks key value pairs for common logger libraries (kitlog,klog,logr,zap)
|
||||||
|
- makezero # finds slice declarations with non-zero initial length
|
||||||
|
- mirror # reports wrong mirror patterns of bytes/strings usage
|
||||||
|
- musttag # enforces field tags in (un)marshaled structs
|
||||||
|
- nakedret # finds naked returns in functions greater than a specified function length
|
||||||
|
- nestif # reports deeply nested if statements
|
||||||
|
# - nilerr # finds the code that returns nil even if it checks that the error is not nil
|
||||||
|
- nilnil # checks that there is no simultaneous return of nil error and an invalid value
|
||||||
|
- noctx # finds sending http request without context.Context
|
||||||
|
- nolintlint # reports ill-formed or insufficient nolint directives
|
||||||
|
# - nonamedreturns # reports all named returns
|
||||||
|
- nosprintfhostport # checks for misuse of Sprintf to construct a host with port in a URL
|
||||||
|
- predeclared # finds code that shadows one of Go's predeclared identifiers
|
||||||
|
- promlinter # checks Prometheus metrics naming via promlint
|
||||||
|
- reassign # checks that package variables are not reassigned
|
||||||
|
# - revive # fast, configurable, extensible, flexible, and beautiful linter for Go, drop-in replacement of golint
|
||||||
|
- rowserrcheck # checks whether Err of rows is checked successfully
|
||||||
|
- sqlclosecheck # checks that sql.Rows and sql.Stmt are closed
|
||||||
|
- stylecheck # is a replacement for golint
|
||||||
|
- tenv # detects using os.Setenv instead of t.Setenv since Go1.17
|
||||||
|
- testableexamples # checks if examples are testable (have an expected output)
|
||||||
|
# - testpackage # makes you use a separate _test package
|
||||||
|
- tparallel # detects inappropriate usage of t.Parallel() method in your Go test codes
|
||||||
|
- unconvert # removes unnecessary type conversions
|
||||||
|
- unparam # reports unused function parameters
|
||||||
|
- usestdlibvars # detects the possibility to use variables/constants from the Go standard library
|
||||||
|
- wastedassign # finds wasted assignment statements
|
||||||
|
- whitespace # detects leading and trailing whitespace
|
||||||
|
|
||||||
|
## you may want to enable
|
||||||
|
#- decorder # checks declaration order and count of types, constants, variables and functions
|
||||||
|
#- exhaustruct # [highly recommend to enable] checks if all structure fields are initialized
|
||||||
|
#- gci # controls golang package import order and makes it always deterministic
|
||||||
|
#- ginkgolinter # [if you use ginkgo/gomega] enforces standards of using ginkgo and gomega
|
||||||
|
#- godox # detects FIXME, TODO and other comment keywords
|
||||||
|
#- goheader # checks is file header matches to pattern
|
||||||
|
#- interfacebloat # checks the number of methods inside an interface
|
||||||
|
#- ireturn # accept interfaces, return concrete types
|
||||||
|
#- prealloc # [premature optimization, but can be used in some cases] finds slice declarations that could potentially be preallocated
|
||||||
|
#- tagalign # checks that struct tags are well aligned
|
||||||
|
#- varnamelen # [great idea, but too many false positives] checks that the length of a variable's name matches its scope
|
||||||
|
#- wrapcheck # checks that errors returned from external packages are wrapped
|
||||||
|
#- zerologlint # detects the wrong usage of zerolog that a user forgets to dispatch zerolog.Event
|
||||||
|
|
||||||
|
## disabled
|
||||||
|
#- containedctx # detects struct contained context.Context field
|
||||||
|
#- contextcheck # [too many false positives] checks the function whether use a non-inherited context
|
||||||
|
#- depguard # [replaced by gomodguard] checks if package imports are in a list of acceptable packages
|
||||||
|
#- dogsled # checks assignments with too many blank identifiers (e.g. x, _, _, _, := f())
|
||||||
|
#- dupword # [useless without config] checks for duplicate words in the source code
|
||||||
|
#- errchkjson # [don't see profit + I'm against of omitting errors like in the first example https://github.com/breml/errchkjson] checks types passed to the json encoding functions. Reports unsupported types and optionally reports occasions, where the check for the returned error can be omitted
|
||||||
|
#- forcetypeassert # [replaced by errcheck] finds forced type assertions
|
||||||
|
#- goerr113 # [too strict] checks the errors handling expressions
|
||||||
|
#- gofmt # [replaced by goimports] checks whether code was gofmt-ed
|
||||||
|
#- gofumpt # [replaced by goimports, gofumports is not available yet] checks whether code was gofumpt-ed
|
||||||
|
#- gosmopolitan # reports certain i18n/l10n anti-patterns in your Go codebase
|
||||||
|
#- grouper # analyzes expression groups
|
||||||
|
#- importas # enforces consistent import aliases
|
||||||
|
#- maintidx # measures the maintainability index of each function
|
||||||
|
#- misspell # [useless] finds commonly misspelled English words in comments
|
||||||
|
#- nlreturn # [too strict and mostly code is not more readable] checks for a new line before return and branch statements to increase code clarity
|
||||||
|
#- paralleltest # [too many false positives] detects missing usage of t.Parallel() method in your Go test
|
||||||
|
#- tagliatelle # checks the struct tags
|
||||||
|
#- thelper # detects golang test helpers without t.Helper() call and checks the consistency of test helpers
|
||||||
|
#- wsl # [too strict and mostly code is not more readable] whitespace linter forces you to use empty lines
|
||||||
|
|
||||||
|
## deprecated
|
||||||
|
#- deadcode # [deprecated, replaced by unused] finds unused code
|
||||||
|
#- exhaustivestruct # [deprecated, replaced by exhaustruct] checks if all struct's fields are initialized
|
||||||
|
#- golint # [deprecated, replaced by revive] golint differs from gofmt. Gofmt reformats Go source code, whereas golint prints out style mistakes
|
||||||
|
#- ifshort # [deprecated] checks that your code uses short syntax for if-statements whenever possible
|
||||||
|
#- interfacer # [deprecated] suggests narrower interface types
|
||||||
|
#- maligned # [deprecated, replaced by govet fieldalignment] detects Go structs that would take less memory if their fields were sorted
|
||||||
|
#- nosnakecase # [deprecated, replaced by revive var-naming] detects snake case of variable naming and function name
|
||||||
|
#- scopelint # [deprecated, replaced by exportloopref] checks for unpinned variables in go programs
|
||||||
|
#- structcheck # [deprecated, replaced by unused] finds unused struct fields
|
||||||
|
#- varcheck # [deprecated, replaced by unused] finds unused global variables and constants
|
||||||
|
|
||||||
|
|
||||||
|
issues:
|
||||||
|
# Maximum count of issues with the same text.
|
||||||
|
# Set to 0 to disable.
|
||||||
|
# Default: 3
|
||||||
|
max-same-issues: 50
|
||||||
|
|
||||||
|
exclude-rules:
|
||||||
|
- source: "(noinspection|TODO)"
|
||||||
|
linters: [ godot ]
|
||||||
|
- source: "//noinspection"
|
||||||
|
linters: [ gocritic ]
|
||||||
|
- path: "_test\\.go"
|
||||||
|
linters:
|
||||||
|
- bodyclose
|
||||||
|
- dupl
|
||||||
|
- funlen
|
||||||
|
- goconst
|
||||||
|
- gosec
|
||||||
|
- noctx
|
||||||
|
- wrapcheck
|
||||||
@ -1,33 +1,47 @@
|
|||||||
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
|
||||||
# load("@bazel_gazelle//:def.bzl", "gazelle")
|
|
||||||
|
|
||||||
# gazelle(name = "gazelle")
|
|
||||||
|
|
||||||
load("@gazelle//:def.bzl", "gazelle")
|
load("@gazelle//:def.bzl", "gazelle")
|
||||||
|
load("@rules_go//go:def.bzl", "go_binary", "go_library")
|
||||||
|
load("@rules_oci//oci:defs.bzl", "oci_image", "oci_push", "oci_tarball")
|
||||||
|
load("@rules_pkg//pkg:tar.bzl", "pkg_tar")
|
||||||
|
|
||||||
|
# gazelle:prefix hello
|
||||||
|
# gazelle:proto disable_global
|
||||||
gazelle(name = "gazelle")
|
gazelle(name = "gazelle")
|
||||||
|
|
||||||
# adding rule to update deps
|
pkg_tar(
|
||||||
gazelle(
|
name = "tar",
|
||||||
name = "gazelle-update-repos",
|
srcs = [":godine"],
|
||||||
args = [
|
|
||||||
"-from_file=go.mod",
|
|
||||||
"-to_macro=deps.bzl%go_dependencies",
|
|
||||||
"-prune",
|
|
||||||
],
|
|
||||||
command = "update-repos",
|
|
||||||
)
|
)
|
||||||
# gazelle:prefix hello
|
|
||||||
go_binary(
|
oci_image(
|
||||||
name = "hello",
|
name = "image",
|
||||||
embed = [":hello_lib"],
|
base = "@alpine",
|
||||||
visibility = ["//visibility:public"],
|
entrypoint = ["/godine"],
|
||||||
|
tars = [":tar"],
|
||||||
|
)
|
||||||
|
|
||||||
|
oci_tarball(
|
||||||
|
name = "tarball",
|
||||||
|
image = ":image",
|
||||||
|
repo_tags = ["ghcr.io/blackhorseya/godine:latest"],
|
||||||
|
)
|
||||||
|
|
||||||
|
oci_push(
|
||||||
|
name = "push",
|
||||||
|
image = ":image",
|
||||||
|
remote_tags = ["latest"],
|
||||||
|
repository = "ghcr.io/blackhorseya/godine",
|
||||||
)
|
)
|
||||||
|
|
||||||
go_library(
|
go_library(
|
||||||
name = "hello_lib",
|
name = "hello_lib",
|
||||||
srcs = ["hello.go"],
|
srcs = ["main.go"],
|
||||||
importpath = "hello",
|
importpath = "hello",
|
||||||
visibility = ["//visibility:private"],
|
visibility = ["//visibility:private"],
|
||||||
deps = ["//lib"],
|
deps = ["//lib"],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
go_binary(
|
||||||
|
name = "hello",
|
||||||
|
embed = [":hello_lib"],
|
||||||
|
visibility = ["//visibility:public"],
|
||||||
|
)
|
||||||
|
|||||||
@ -0,0 +1,640 @@
|
|||||||
|
## 0.5.4 (2024-07-23)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- implement HTML templates in user RESTful API
|
||||||
|
- implement tracing for list payments function (#95)
|
||||||
|
- improve error handling and tracing in payment function
|
||||||
|
- implement tracing for list payments function
|
||||||
|
|
||||||
|
## 0.5.3 (2024-07-23)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- consolidate file embedding and path structure
|
||||||
|
- integrate MongoDB client and payment repository (#94)
|
||||||
|
- integrate MongoDB client and payment repository
|
||||||
|
|
||||||
|
## 0.5.2 (2024-07-23)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- integrate Wirex payment adapter into project (#93)
|
||||||
|
- integrate RESTful payment adapter in start command
|
||||||
|
- refactor signal handling and testing
|
||||||
|
- consolidate RESTful API definitions and implementations
|
||||||
|
- integrate Wirex payment adapter into project
|
||||||
|
- update dependency management and error handling in MongoDB integration (#92)
|
||||||
|
- refactor functions for improved error handling
|
||||||
|
- optimize MongoDB integration with OpenTelemetry tracing
|
||||||
|
- update dependency management and error handling in MongoDB integration
|
||||||
|
- create mock payment files for payment repository (#91)
|
||||||
|
- create mock payment files for payment repository
|
||||||
|
- refactor payment service and add BUILD file (#90)
|
||||||
|
- refactor payment service and add BUILD file
|
||||||
|
- consolidate new files in `biz` package
|
||||||
|
- implement payment model in Bazel build system (#89)
|
||||||
|
- implement payment model in Bazel build system
|
||||||
|
- implement secure logout functionality (#88)
|
||||||
|
- implement secure logout functionality
|
||||||
|
- implement user authentication and styling enhancements
|
||||||
|
- create new user interface template for web page (#87)
|
||||||
|
- implement IsAuthenticated middleware for user authentication
|
||||||
|
- update user profile route and template display
|
||||||
|
- create new user interface template for web page
|
||||||
|
- integrate new features and dependencies in code base (#86)
|
||||||
|
- integrate new features and dependencies in code base
|
||||||
|
- improve user authentication process (#85)
|
||||||
|
- improve user authentication process
|
||||||
|
- refactor authentication infrastructure (#84)
|
||||||
|
- enhance home page functionality and design
|
||||||
|
- refactor authentication infrastructure in `app/infra/authx`
|
||||||
|
- refactor MongoDB testing and dependencies
|
||||||
|
|
||||||
|
### Refactor
|
||||||
|
|
||||||
|
- refactor package imports and function signatures
|
||||||
|
- refactor error handling for missing resources
|
||||||
|
- refactor user model package imports and function return types
|
||||||
|
- refactor database package to use GORM instead of MariaDB
|
||||||
|
- update database driver to postgresqlx throughout the codebase
|
||||||
|
- refactor code organization and remove unnecessary OpenAPI spec values
|
||||||
|
|
||||||
|
## 0.5.1 (2024-07-18)
|
||||||
|
|
||||||
|
## 0.5.1-rc0 (2024-07-18)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- refactor response handling and user creation logic (#75)
|
||||||
|
- refactor response handling and user creation logic
|
||||||
|
|
||||||
|
### Refactor
|
||||||
|
|
||||||
|
- refactor order creation and update process (#80)
|
||||||
|
- refactor order creation and update process
|
||||||
|
- improve error handling and test functions (#78)
|
||||||
|
- improve error handling and test functions
|
||||||
|
- improve efficiency of order count retrieval (#77)
|
||||||
|
- improve efficiency of order count retrieval
|
||||||
|
- refactor error handling in test files (#74)
|
||||||
|
- refactor error handling in test files
|
||||||
|
- consolidate error handling logic across files (#73)
|
||||||
|
- consolidate error handling logic across files
|
||||||
|
|
||||||
|
## 0.5.0 (2024-07-08)
|
||||||
|
|
||||||
|
### Refactor
|
||||||
|
|
||||||
|
- update variable names for clarity
|
||||||
|
|
||||||
|
## 0.4.10 (2024-07-08)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- refactor database configuration options
|
||||||
|
- improve error handling and logging across project
|
||||||
|
|
||||||
|
## 0.4.9 (2024-07-07)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- refactor transaction handling and session creation
|
||||||
|
- refactor load testing targets and scenarios
|
||||||
|
|
||||||
|
## 0.4.8 (2024-07-07)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- improve transaction handling and error checking
|
||||||
|
|
||||||
|
## 0.4.7 (2024-07-07)
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- improve transaction isolation handling
|
||||||
|
|
||||||
|
## 0.4.6 (2024-07-06)
|
||||||
|
|
||||||
|
## 0.4.5 (2024-07-06)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- improve service initialization and error handling (#71)
|
||||||
|
- improve server shutdown logging for multiple adapters
|
||||||
|
- implement graceful shutdown for server
|
||||||
|
- improve service initialization and error handling
|
||||||
|
- refactor command execution logic in main loop
|
||||||
|
- introduce new service listing functionality
|
||||||
|
|
||||||
|
### Refactor
|
||||||
|
|
||||||
|
- refactor signal handling and remove otelx references
|
||||||
|
- refactor and clean up code in multiple adapter packages
|
||||||
|
- improve error handling and signal handling
|
||||||
|
- refactor service commands in `start.go` and `cmdx.go`
|
||||||
|
|
||||||
|
## 0.4.4 (2024-07-06)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- refactor configuration package in `configx` module
|
||||||
|
- add Configuration Field to Injector Struct (#68)
|
||||||
|
- improve error handling and dynamic config file path logic
|
||||||
|
- refactor configuration initialization across multiple files
|
||||||
|
- add Configuration Field to Injector Struct
|
||||||
|
- improve transaction handling and error logging (#67)
|
||||||
|
- improve transaction handling and error logging
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- refactor application initialization for configuration injection
|
||||||
|
- improve error handling and rollback in mariadb functions
|
||||||
|
|
||||||
|
### Refactor
|
||||||
|
|
||||||
|
- refactor codebase for improved efficiency
|
||||||
|
- refactor code to remove unnecessary variables
|
||||||
|
- refactor code to include `app *configx.Application` parameter
|
||||||
|
- refactor Configuration struct properties (#70)
|
||||||
|
- refactor Configuration struct properties
|
||||||
|
- update HTTP client functions to accept config parameter
|
||||||
|
- refactor configuration handling in external tests
|
||||||
|
- refactor configuration handling in wire setup
|
||||||
|
- refactor initialization process to use viper parameter
|
||||||
|
- refactor initialization process for better parameter passing
|
||||||
|
- refactor application configuration handling
|
||||||
|
- refactor initialization and imports in test files
|
||||||
|
- refactor configuration handling in cmdx package
|
||||||
|
|
||||||
|
## 0.4.3 (2024-07-06)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- refactor snowflake node ID generation
|
||||||
|
|
||||||
|
### Refactor
|
||||||
|
|
||||||
|
- update order ID values throughout API tests
|
||||||
|
|
||||||
|
## 0.4.2 (2024-07-06)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- refactor Order struct to include BigIntID field (#66)
|
||||||
|
- refactor Order struct to include BigIntID field
|
||||||
|
- implement snowflake node creation and ID generation
|
||||||
|
- add new field `NewID` to Order struct
|
||||||
|
- update `orderId` value in API endpoints
|
||||||
|
|
||||||
|
### Refactor
|
||||||
|
|
||||||
|
- refactor order model and error logging
|
||||||
|
- refactor order ID generation across files
|
||||||
|
- set default value for order.NewID when not provided
|
||||||
|
|
||||||
|
## 0.4.1 (2024-07-05)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- update GORM implementation in Order struct (#63)
|
||||||
|
- update GORM implementation in Order struct
|
||||||
|
- implement database integration with MariaDB
|
||||||
|
- improve error handling and tracing throughout codebase
|
||||||
|
- consolidate default limit and offset handling
|
||||||
|
- improve error handling and testing for order functions
|
||||||
|
- improve logging functionality across the codebase
|
||||||
|
- improve transaction handling for order creation
|
||||||
|
- update order creation process in domain package
|
||||||
|
- refactor mariadb module for dependency injection (#60)
|
||||||
|
- implement logging and tracing in `mariadb.go`
|
||||||
|
- refactor test setup and configuration handling
|
||||||
|
- refactor MariaDB external tester configuration
|
||||||
|
- refactor mariadb module for dependency injection
|
||||||
|
- optimize MySQL client connection settings
|
||||||
|
- add support for MariaDB integration
|
||||||
|
- configure `mariadb` service and volume (#58)
|
||||||
|
- configure `mariadb` service and volume
|
||||||
|
- consolidate MySQL configurations in app.go
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- refactor return statements in BeforeSave and AfterFind
|
||||||
|
- improve error handling and import statements in Mariadb files
|
||||||
|
|
||||||
|
### Refactor
|
||||||
|
|
||||||
|
- optimize database queries in mariadb.go
|
||||||
|
- refactor struct tags for Order and OrderItem models (#62)
|
||||||
|
- improve error handling and context in List function
|
||||||
|
- refactor struct tags for Order and OrderItem models
|
||||||
|
- refactor order repository to use gorm instead of sqlx
|
||||||
|
|
||||||
|
## 0.4.0 (2024-07-04)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- refactor database schema and model initialization
|
||||||
|
|
||||||
|
### Refactor
|
||||||
|
|
||||||
|
- update database column types to BIGINT
|
||||||
|
|
||||||
|
## 0.3.7 (2024-07-04)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- update order and user information in API endpoints
|
||||||
|
|
||||||
|
### Perf
|
||||||
|
|
||||||
|
- optimize MongoDB query performance
|
||||||
|
|
||||||
|
## 0.3.6 (2024-07-03)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- improve restaurant data handling and caching
|
||||||
|
|
||||||
|
### Refactor
|
||||||
|
|
||||||
|
- convert string IDs to ObjectIDs for MongoDB queries (#56)
|
||||||
|
- refactor code to use ObjectID for filter operations
|
||||||
|
- refactor UnmarshalBSON functions in multiple models
|
||||||
|
- convert string IDs to ObjectIDs for MongoDB queries
|
||||||
|
- refactor ID generation and imports in MongoDB model files
|
||||||
|
|
||||||
|
## 0.3.5 (2024-07-03)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- implement caching functionality for restaurant data in Redis (#55)
|
||||||
|
- implement caching functionality for restaurant data in Redis
|
||||||
|
- integrate Redis service and configurations across services (#54)
|
||||||
|
- integrate Redis service and configurations across services
|
||||||
|
- refactor Redis configuration and dependencies (#52)
|
||||||
|
- refactor Redis configuration and dependencies
|
||||||
|
|
||||||
|
### Refactor
|
||||||
|
|
||||||
|
- refactor error handling and logging logic across multiple files
|
||||||
|
- update IDs in test and request files
|
||||||
|
|
||||||
|
## 0.3.4 (2024-07-02)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- improve network performance and reliability
|
||||||
|
- optimize connection pool configuration in NewClientWithDSN function
|
||||||
|
- improve API test suite and assertions
|
||||||
|
|
||||||
|
## 0.3.3 (2024-07-02)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- optimize connection pool configuration in NewClientWithDSN function
|
||||||
|
|
||||||
|
## 0.3.2 (2024-07-02)
|
||||||
|
|
||||||
|
### Refactor
|
||||||
|
|
||||||
|
- update data type of X-Total-Count header in API endpoints
|
||||||
|
|
||||||
|
## 0.3.1 (2024-06-29)
|
||||||
|
|
||||||
|
## 0.3.0 (2024-06-27)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- improve error handling and data parsing in API requests
|
||||||
|
- refactor error handling and implement user list functionality in HTTP client (#47)
|
||||||
|
- refactor error handling and status code checks
|
||||||
|
- improve error handling and response parsing in DeleteUser method
|
||||||
|
- improve user update functionality with tracing and error handling
|
||||||
|
- refactor error handling and implement user list functionality in HTTP client
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- improve error handling in logistics HTTP client (#48)
|
||||||
|
- improve error handling in logistics HTTP client
|
||||||
|
|
||||||
|
### Refactor
|
||||||
|
|
||||||
|
- refactor notification service methods
|
||||||
|
- update error handling in logistics HTTP client files
|
||||||
|
|
||||||
|
## 0.2.3 (2024-06-27)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- implement new CRUD endpoints and Swagger definitions (#46)
|
||||||
|
- refactor URL path concatenation using constant variable
|
||||||
|
- improve error handling and user status functionality
|
||||||
|
- update user information with error handling and return updated info
|
||||||
|
- implement new CRUD endpoints and Swagger definitions
|
||||||
|
- improve error handling and logging in UpdateMenuItem function (#45)
|
||||||
|
- improve error handling and logging in UpdateMenuItem function
|
||||||
|
- improve error handling and HTTP request in UpdateRestaurant function (#44)
|
||||||
|
- refactor restaurant HTTP client for error handling
|
||||||
|
- implement error handling and HTTP logic for DeleteRestaurant method
|
||||||
|
- improve error handling and HTTP request in UpdateRestaurant function
|
||||||
|
- refactor update and delete operations for restaurant model (#43)
|
||||||
|
- refactor update and delete operations for restaurant model
|
||||||
|
- improve restaurant entity management and error handling (#42)
|
||||||
|
- refactor restaurant API delete functionality
|
||||||
|
- improve restaurant entity management and error handling
|
||||||
|
- implement PUT and DELETE functionality for items API (#41)
|
||||||
|
- implement PUT and DELETE functionality for items API
|
||||||
|
- add restaurant api router
|
||||||
|
- improve error handling and logging in menu HTTP client (#40)
|
||||||
|
- improve error handling and logging in menu HTTP client
|
||||||
|
- implement new delivery status changed handler in biz directory
|
||||||
|
- consolidate logistics handling functionality (#39)
|
||||||
|
- refactor delivery status handling in logistics module
|
||||||
|
- consolidate logistics handling functionality
|
||||||
|
- implement dependency injection using Wire in handler package (#38)
|
||||||
|
- implement dependency injection using Wire in handler package
|
||||||
|
- improve logging in KafkaEventBus
|
||||||
|
- introduce a new function for creating writers with specified topics
|
||||||
|
- consolidate topic name usage in Kafka event bus
|
||||||
|
- integrate MQX event bus into logistics module
|
||||||
|
- introduce new event handling functionality (#37)
|
||||||
|
- integrate Kafka event bus into transport and update methods
|
||||||
|
- implement in-memory event bus with registration and publishing capabilities
|
||||||
|
- implement MQX transport for event bus integration
|
||||||
|
- introduce new event handling functionality
|
||||||
|
- consolidate event handling functionality
|
||||||
|
- refactor delivery status change methods across services
|
||||||
|
- implement Kafka message delivery for status updates
|
||||||
|
- update Kafka configuration and dependencies across files
|
||||||
|
- integrate Kafka configurations for new broker service
|
||||||
|
|
||||||
|
### Refactor
|
||||||
|
|
||||||
|
- improve context handling in user deletion process
|
||||||
|
- refactor user model references in http_client.go
|
||||||
|
- refactor order service methods and interfaces
|
||||||
|
- standardize error handling with `errorx` package
|
||||||
|
- standardize span naming conventions across files
|
||||||
|
- refactor restaurant API URL construction in http client
|
||||||
|
- standardize field name for page size across restaurant domain
|
||||||
|
- optimize imports across the codebase
|
||||||
|
- update `IsOpen` field in restaurant structs
|
||||||
|
- refactor event bus handling and logging in Kafka integration
|
||||||
|
- refactor event handling in logistics domain
|
||||||
|
- refactor event handling in delivery system
|
||||||
|
- refactor event handling to use topic instead of event type
|
||||||
|
- refactor error handling and logging in logistics and event bus modules
|
||||||
|
- refactor restaurant ID field in PostPayload struct
|
||||||
|
- refactor order handling interfaces
|
||||||
|
- refactor Kafka topic handling throughout the codebase
|
||||||
|
|
||||||
|
## 0.2.2 (2024-06-26)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- refactor delivery status handling in logistics service
|
||||||
|
- update PATCH route and Swagger documentation in logistics API
|
||||||
|
- improve state transition handling in delivery process (#35)
|
||||||
|
- improve state transition handling in delivery process
|
||||||
|
- refactor default status handling in deliveries
|
||||||
|
- refactor model package and update dependencies
|
||||||
|
- improve error handling and notifications
|
||||||
|
- improve error handling and order retrieval in API functions
|
||||||
|
- refactor API handling for PatchWithStatus functionality
|
||||||
|
- update order status endpoint and documentation
|
||||||
|
|
||||||
|
### Refactor
|
||||||
|
|
||||||
|
- refactor delivery status handling in `delivery_state.go` files
|
||||||
|
- refactor delivery status handling in model logic
|
||||||
|
|
||||||
|
## 0.2.1 (2024-06-26)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- refactor notification creation in order process
|
||||||
|
- refactor notification HTTP client functionality in Go codebase (#33)
|
||||||
|
- improve error handling and response parsing
|
||||||
|
- improve notification handling and error checking
|
||||||
|
- update notification API functionality (#32)
|
||||||
|
- update notification API functionality
|
||||||
|
- refactor notification HTTP client functionality in Go codebase
|
||||||
|
- implement RESTful API routing for notifications (#31)
|
||||||
|
- introduce new RESTful notifications API framework
|
||||||
|
- implement RESTful API routing for notifications
|
||||||
|
- implement error handling and result count logic across files
|
||||||
|
- refactor dependency management and notifications in MongoDB integration
|
||||||
|
- integrate new notification features across files
|
||||||
|
- introduce notifications functionality into the repo package (#28)
|
||||||
|
- implement MongoDB notification repository functionality
|
||||||
|
- introduce notifications functionality into the repo package
|
||||||
|
- create new notification adapter for wirex integration (#27)
|
||||||
|
- integrate new `notify_restful` service into compose configuration
|
||||||
|
- implement real-time notification feature with `notify` module
|
||||||
|
- integrate new NotifyRestful application configuration
|
||||||
|
- create new notification adapter for wirex integration
|
||||||
|
- consolidate notification business logic into separate package
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- improve error handling in GetByID function
|
||||||
|
|
||||||
|
### Refactor
|
||||||
|
|
||||||
|
- update naming convention for notification services
|
||||||
|
- refactor notification handling to use model.Notification struct
|
||||||
|
- refactor imports for notification module
|
||||||
|
- refactor UpdateStatus function and improve error handling
|
||||||
|
- remove references to notification biz from order adapter
|
||||||
|
|
||||||
|
## 0.2.0 (2024-06-25)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- integrate OTel collector, Jaeger, and Prometheus services (#24)
|
||||||
|
- integrate OTel collector, Jaeger, and Prometheus services
|
||||||
|
- implement NewDelivery method and dependencies (#22)
|
||||||
|
- improve order creation and update functionality
|
||||||
|
- refactor order model to include delivery ID
|
||||||
|
- implement NewDelivery method and dependencies
|
||||||
|
- integrate logistics business logic into order module (#21)
|
||||||
|
- refactor error handling and response parsing in GetDelivery method
|
||||||
|
- consolidate dependencies and implement new method
|
||||||
|
- integrate logistics business logic into order module
|
||||||
|
- improve error handling and imports across files (#20)
|
||||||
|
- improve error handling and context in GetByID function
|
||||||
|
- improve error handling and documentation in Handle function
|
||||||
|
- improve error handling and imports across files
|
||||||
|
- introduce new deliveries API handlers and documentation (#19)
|
||||||
|
- improve delivery management API endpoints
|
||||||
|
- introduce new deliveries API handlers and documentation
|
||||||
|
- refactor filter conditions for driver_id in List function
|
||||||
|
- improve delivery service functionality (#18)
|
||||||
|
- improve delivery tracking functionality
|
||||||
|
- improve delivery service functionality
|
||||||
|
- implement distributed tracing with otelx package
|
||||||
|
- add dependencies and implement Create method in mongodb.go (#17)
|
||||||
|
- refactor MongoDB deliveries Delete method
|
||||||
|
- implement timeout and filter options in MongoDB list function
|
||||||
|
- add dependencies and implement Create method in mongodb.go
|
||||||
|
- introduce RESTful API for logistics service
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- improve database update operations and error handling
|
||||||
|
- refactor error handling in MongoDB operations
|
||||||
|
|
||||||
|
### Refactor
|
||||||
|
|
||||||
|
- improve code quality and readability in order creation process
|
||||||
|
- refactor code for improved efficiency
|
||||||
|
- refactor UpdateDeliveryStatus function
|
||||||
|
|
||||||
|
## 0.1.3 (2024-06-25)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- consolidate new files for logistics/restful and wirex (#15)
|
||||||
|
- consolidate new files for logistics/restful and wirex
|
||||||
|
- integrate new LogisticsRestful application into Configuration struct
|
||||||
|
- consolidate Bazel build configuration for wirex module
|
||||||
|
- consolidate logistics domain files into biz directory (#14)
|
||||||
|
- integrate dependency injection with Wire framework
|
||||||
|
- consolidate logistics domain files into biz directory
|
||||||
|
- consolidate logistics business entity files
|
||||||
|
- consolidate delivery module files into separate directory
|
||||||
|
- create new structs for delivery entities and addresses (#11)
|
||||||
|
- create new structs for delivery entities and addresses
|
||||||
|
|
||||||
|
### Refactor
|
||||||
|
|
||||||
|
- refactor delivery methods in `ILogisticsBiz` interface (#13)
|
||||||
|
- refactor delivery methods in `ILogisticsBiz` interface
|
||||||
|
|
||||||
|
## 0.1.2 (2024-06-25)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- implement error handling and list orders functionality (#10)
|
||||||
|
- refactor GetByID function for improved error handling and order information retrieval
|
||||||
|
- implement error handling and list orders functionality
|
||||||
|
- refactor API endpoints and Swagger documentation (#9)
|
||||||
|
- refactor API endpoints and Swagger documentation
|
||||||
|
- refactor tracing and error handling in order.go (#8)
|
||||||
|
- refactor tracing and error handling in order.go
|
||||||
|
- improve error handling and listing logic in functions (#6)
|
||||||
|
- improve error handling and listing logic in functions
|
||||||
|
- refactor order status handling and transitions (#5)
|
||||||
|
- enhance JSON serialization for Order struct
|
||||||
|
- implement Unmarshal methods for Order struct
|
||||||
|
- refactor order status handling and transitions
|
||||||
|
- refactor MongoDB integration in order service
|
||||||
|
- refactor order creation process (#4)
|
||||||
|
- enhance payload handling for orders API requests
|
||||||
|
- refactor order creation process
|
||||||
|
- update order API payloads and documentation
|
||||||
|
- refactor order creation process in `order.go`
|
||||||
|
- generate order items based on menu items and options
|
||||||
|
- consolidate restaurant menu endpoint logic (#2)
|
||||||
|
- consolidate restaurant menu endpoint logic
|
||||||
|
- refactor order business logic across multiple files (#1)
|
||||||
|
- refactor menuService implementation in NewOrderBiz function
|
||||||
|
- refactor order business logic across multiple files
|
||||||
|
- improve error handling and menu retrieval in API
|
||||||
|
- refactor naming conventions in codebase
|
||||||
|
- add user level field to API documentation
|
||||||
|
- refactor order creation process
|
||||||
|
- refactor HTTP client methods in biz library
|
||||||
|
- update user struct to include new level field
|
||||||
|
- update user retrieval functionality and Swagger documentation
|
||||||
|
- add RESTful API for user management in adapter user module
|
||||||
|
- integrate user-restful adapter into project
|
||||||
|
- consolidate user restful API and wirex implementations
|
||||||
|
- refactor user management and add `IsActive` field
|
||||||
|
- implement user-based filtering for update and delete operations
|
||||||
|
- refactor MongoDB list function for better error handling
|
||||||
|
- refactor user creation logic and data types
|
||||||
|
- implement Bazel build system and user repository interface
|
||||||
|
- refactor user methods to accept ID as string
|
||||||
|
- integrate RESTful order API versioning into system
|
||||||
|
- refactor order business logic and dependencies
|
||||||
|
- refactor error handling and API requests in restaurant HTTP client
|
||||||
|
- integrate UUID library for API endpoint retrieval
|
||||||
|
- update restaurant library with new HTTP client functions
|
||||||
|
- consolidate order domain and repository entity files
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- improve error handling and query options in user functions
|
||||||
|
- improve error handling for HTTP requests
|
||||||
|
|
||||||
|
### Refactor
|
||||||
|
|
||||||
|
- refactor return type of ListOrders to use pointers
|
||||||
|
- refactor order listing functions and structs (#7)
|
||||||
|
- refactor order listing functions and structs
|
||||||
|
- consolidate duplicate code in list functions
|
||||||
|
- refactor UpdateStatus method across multiple files
|
||||||
|
- refactor order state handling and add pending state functionality
|
||||||
|
- refactor API pagination parameters
|
||||||
|
- refactor parameter naming in CreateOrder function
|
||||||
|
- update data types from uuid.UUID to string across files (#3)
|
||||||
|
- update data types from uuid.UUID to string across files
|
||||||
|
- refactor order item initialization in CreateOrder function
|
||||||
|
- refactor user business logic across modules
|
||||||
|
- refactor user model and remove aggregate functionality
|
||||||
|
- refactor restaurant HTTP client functionality
|
||||||
|
- refactor data types and variable names in order models
|
||||||
|
|
||||||
|
## 0.1.1 (2024-06-13)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- introduce Swagger documentation for order restful API
|
||||||
|
- refactor order wirex adapter configuration and build process
|
||||||
|
- add new POST method and documentation for menu items
|
||||||
|
- refactor API endpoints and update Swagger documentation
|
||||||
|
- create endpoint for posting restaurants and update swagger docs
|
||||||
|
- integrate v1 restful API for restaurant handling
|
||||||
|
- implement v1 restful API endpoints with Go_library targets
|
||||||
|
- improve error handling and update menu logic
|
||||||
|
- improve error handling and traceability in menu functionality
|
||||||
|
- refactor menuBiz struct and NewMenuBiz function
|
||||||
|
- refactor restaurant domain logic and models
|
||||||
|
- integrate MongoDB options for restaurant listing
|
||||||
|
- improve error handling and add timeouts to methods
|
||||||
|
- consolidate MongoDB package functionality
|
||||||
|
- create initial files for restaurant package and repo
|
||||||
|
- consolidate new functionality for the biz domain
|
||||||
|
- implement order-related methods and build file for `biz` package
|
||||||
|
- consolidate new files into biz directory
|
||||||
|
- implement CRUD operations for user management in IUserBiz interface
|
||||||
|
- consolidate business logic and structures
|
||||||
|
- consolidate new files for `model` package
|
||||||
|
- introduce new files to the `model` package
|
||||||
|
- implement restaurant model with necessary files and functions
|
||||||
|
- refactor health check endpoint and Swagger definitions
|
||||||
|
- refactor server start command using Cobra
|
||||||
|
- update Swagger documentation and add Bazel files for restaurant API
|
||||||
|
- implement dependency injection in restaurant adapter
|
||||||
|
- consolidate configuration files in app/infra/configx
|
||||||
|
- consolidate package structure into `pkg/cmdx` folder
|
||||||
|
- create new `adapterx` package with BUILD.bazel and adapterx.go files
|
||||||
|
- implement logging package with options and initialization
|
||||||
|
- implement custom error handling with errorx package
|
||||||
|
|
||||||
|
### Refactor
|
||||||
|
|
||||||
|
- refactor menu API and business logic
|
||||||
|
- improve error handling and logging for restaurant operations
|
||||||
|
- refactor restaurant aggregation logic in model files
|
||||||
|
- refactor struct field names and introduce new module in Bazel build
|
||||||
|
|
||||||
|
## 0.1.0 (2024-06-10)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- consolidate netx package structure
|
||||||
|
- introduce new cmd target and go_binary in Bazel files
|
||||||
|
- update workspace definitions for new project integration
|
||||||
@ -0,0 +1,674 @@
|
|||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
Version 3, 29 June 2007
|
||||||
|
|
||||||
|
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
Preamble
|
||||||
|
|
||||||
|
The GNU General Public License is a free, copyleft license for
|
||||||
|
software and other kinds of works.
|
||||||
|
|
||||||
|
The licenses for most software and other practical works are designed
|
||||||
|
to take away your freedom to share and change the works. By contrast,
|
||||||
|
the GNU General Public License is intended to guarantee your freedom to
|
||||||
|
share and change all versions of a program--to make sure it remains free
|
||||||
|
software for all its users. We, the Free Software Foundation, use the
|
||||||
|
GNU General Public License for most of our software; it applies also to
|
||||||
|
any other work released this way by its authors. You can apply it to
|
||||||
|
your programs, too.
|
||||||
|
|
||||||
|
When we speak of free software, we are referring to freedom, not
|
||||||
|
price. Our General Public Licenses are designed to make sure that you
|
||||||
|
have the freedom to distribute copies of free software (and charge for
|
||||||
|
them if you wish), that you receive source code or can get it if you
|
||||||
|
want it, that you can change the software or use pieces of it in new
|
||||||
|
free programs, and that you know you can do these things.
|
||||||
|
|
||||||
|
To protect your rights, we need to prevent others from denying you
|
||||||
|
these rights or asking you to surrender the rights. Therefore, you have
|
||||||
|
certain responsibilities if you distribute copies of the software, or if
|
||||||
|
you modify it: responsibilities to respect the freedom of others.
|
||||||
|
|
||||||
|
For example, if you distribute copies of such a program, whether
|
||||||
|
gratis or for a fee, you must pass on to the recipients the same
|
||||||
|
freedoms that you received. You must make sure that they, too, receive
|
||||||
|
or can get the source code. And you must show them these terms so they
|
||||||
|
know their rights.
|
||||||
|
|
||||||
|
Developers that use the GNU GPL protect your rights with two steps:
|
||||||
|
(1) assert copyright on the software, and (2) offer you this License
|
||||||
|
giving you legal permission to copy, distribute and/or modify it.
|
||||||
|
|
||||||
|
For the developers' and authors' protection, the GPL clearly explains
|
||||||
|
that there is no warranty for this free software. For both users' and
|
||||||
|
authors' sake, the GPL requires that modified versions be marked as
|
||||||
|
changed, so that their problems will not be attributed erroneously to
|
||||||
|
authors of previous versions.
|
||||||
|
|
||||||
|
Some devices are designed to deny users access to install or run
|
||||||
|
modified versions of the software inside them, although the manufacturer
|
||||||
|
can do so. This is fundamentally incompatible with the aim of
|
||||||
|
protecting users' freedom to change the software. The systematic
|
||||||
|
pattern of such abuse occurs in the area of products for individuals to
|
||||||
|
use, which is precisely where it is most unacceptable. Therefore, we
|
||||||
|
have designed this version of the GPL to prohibit the practice for those
|
||||||
|
products. If such problems arise substantially in other domains, we
|
||||||
|
stand ready to extend this provision to those domains in future versions
|
||||||
|
of the GPL, as needed to protect the freedom of users.
|
||||||
|
|
||||||
|
Finally, every program is threatened constantly by software patents.
|
||||||
|
States should not allow patents to restrict development and use of
|
||||||
|
software on general-purpose computers, but in those that do, we wish to
|
||||||
|
avoid the special danger that patents applied to a free program could
|
||||||
|
make it effectively proprietary. To prevent this, the GPL assures that
|
||||||
|
patents cannot be used to render the program non-free.
|
||||||
|
|
||||||
|
The precise terms and conditions for copying, distribution and
|
||||||
|
modification follow.
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
0. Definitions.
|
||||||
|
|
||||||
|
"This License" refers to version 3 of the GNU General Public License.
|
||||||
|
|
||||||
|
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||||
|
works, such as semiconductor masks.
|
||||||
|
|
||||||
|
"The Program" refers to any copyrightable work licensed under this
|
||||||
|
License. Each licensee is addressed as "you". "Licensees" and
|
||||||
|
"recipients" may be individuals or organizations.
|
||||||
|
|
||||||
|
To "modify" a work means to copy from or adapt all or part of the work
|
||||||
|
in a fashion requiring copyright permission, other than the making of an
|
||||||
|
exact copy. The resulting work is called a "modified version" of the
|
||||||
|
earlier work or a work "based on" the earlier work.
|
||||||
|
|
||||||
|
A "covered work" means either the unmodified Program or a work based
|
||||||
|
on the Program.
|
||||||
|
|
||||||
|
To "propagate" a work means to do anything with it that, without
|
||||||
|
permission, would make you directly or secondarily liable for
|
||||||
|
infringement under applicable copyright law, except executing it on a
|
||||||
|
computer or modifying a private copy. Propagation includes copying,
|
||||||
|
distribution (with or without modification), making available to the
|
||||||
|
public, and in some countries other activities as well.
|
||||||
|
|
||||||
|
To "convey" a work means any kind of propagation that enables other
|
||||||
|
parties to make or receive copies. Mere interaction with a user through
|
||||||
|
a computer network, with no transfer of a copy, is not conveying.
|
||||||
|
|
||||||
|
An interactive user interface displays "Appropriate Legal Notices"
|
||||||
|
to the extent that it includes a convenient and prominently visible
|
||||||
|
feature that (1) displays an appropriate copyright notice, and (2)
|
||||||
|
tells the user that there is no warranty for the work (except to the
|
||||||
|
extent that warranties are provided), that licensees may convey the
|
||||||
|
work under this License, and how to view a copy of this License. If
|
||||||
|
the interface presents a list of user commands or options, such as a
|
||||||
|
menu, a prominent item in the list meets this criterion.
|
||||||
|
|
||||||
|
1. Source Code.
|
||||||
|
|
||||||
|
The "source code" for a work means the preferred form of the work
|
||||||
|
for making modifications to it. "Object code" means any non-source
|
||||||
|
form of a work.
|
||||||
|
|
||||||
|
A "Standard Interface" means an interface that either is an official
|
||||||
|
standard defined by a recognized standards body, or, in the case of
|
||||||
|
interfaces specified for a particular programming language, one that
|
||||||
|
is widely used among developers working in that language.
|
||||||
|
|
||||||
|
The "System Libraries" of an executable work include anything, other
|
||||||
|
than the work as a whole, that (a) is included in the normal form of
|
||||||
|
packaging a Major Component, but which is not part of that Major
|
||||||
|
Component, and (b) serves only to enable use of the work with that
|
||||||
|
Major Component, or to implement a Standard Interface for which an
|
||||||
|
implementation is available to the public in source code form. A
|
||||||
|
"Major Component", in this context, means a major essential component
|
||||||
|
(kernel, window system, and so on) of the specific operating system
|
||||||
|
(if any) on which the executable work runs, or a compiler used to
|
||||||
|
produce the work, or an object code interpreter used to run it.
|
||||||
|
|
||||||
|
The "Corresponding Source" for a work in object code form means all
|
||||||
|
the source code needed to generate, install, and (for an executable
|
||||||
|
work) run the object code and to modify the work, including scripts to
|
||||||
|
control those activities. However, it does not include the work's
|
||||||
|
System Libraries, or general-purpose tools or generally available free
|
||||||
|
programs which are used unmodified in performing those activities but
|
||||||
|
which are not part of the work. For example, Corresponding Source
|
||||||
|
includes interface definition files associated with source files for
|
||||||
|
the work, and the source code for shared libraries and dynamically
|
||||||
|
linked subprograms that the work is specifically designed to require,
|
||||||
|
such as by intimate data communication or control flow between those
|
||||||
|
subprograms and other parts of the work.
|
||||||
|
|
||||||
|
The Corresponding Source need not include anything that users
|
||||||
|
can regenerate automatically from other parts of the Corresponding
|
||||||
|
Source.
|
||||||
|
|
||||||
|
The Corresponding Source for a work in source code form is that
|
||||||
|
same work.
|
||||||
|
|
||||||
|
2. Basic Permissions.
|
||||||
|
|
||||||
|
All rights granted under this License are granted for the term of
|
||||||
|
copyright on the Program, and are irrevocable provided the stated
|
||||||
|
conditions are met. This License explicitly affirms your unlimited
|
||||||
|
permission to run the unmodified Program. The output from running a
|
||||||
|
covered work is covered by this License only if the output, given its
|
||||||
|
content, constitutes a covered work. This License acknowledges your
|
||||||
|
rights of fair use or other equivalent, as provided by copyright law.
|
||||||
|
|
||||||
|
You may make, run and propagate covered works that you do not
|
||||||
|
convey, without conditions so long as your license otherwise remains
|
||||||
|
in force. You may convey covered works to others for the sole purpose
|
||||||
|
of having them make modifications exclusively for you, or provide you
|
||||||
|
with facilities for running those works, provided that you comply with
|
||||||
|
the terms of this License in conveying all material for which you do
|
||||||
|
not control copyright. Those thus making or running the covered works
|
||||||
|
for you must do so exclusively on your behalf, under your direction
|
||||||
|
and control, on terms that prohibit them from making any copies of
|
||||||
|
your copyrighted material outside their relationship with you.
|
||||||
|
|
||||||
|
Conveying under any other circumstances is permitted solely under
|
||||||
|
the conditions stated below. Sublicensing is not allowed; section 10
|
||||||
|
makes it unnecessary.
|
||||||
|
|
||||||
|
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||||
|
|
||||||
|
No covered work shall be deemed part of an effective technological
|
||||||
|
measure under any applicable law fulfilling obligations under article
|
||||||
|
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||||
|
similar laws prohibiting or restricting circumvention of such
|
||||||
|
measures.
|
||||||
|
|
||||||
|
When you convey a covered work, you waive any legal power to forbid
|
||||||
|
circumvention of technological measures to the extent such circumvention
|
||||||
|
is effected by exercising rights under this License with respect to
|
||||||
|
the covered work, and you disclaim any intention to limit operation or
|
||||||
|
modification of the work as a means of enforcing, against the work's
|
||||||
|
users, your or third parties' legal rights to forbid circumvention of
|
||||||
|
technological measures.
|
||||||
|
|
||||||
|
4. Conveying Verbatim Copies.
|
||||||
|
|
||||||
|
You may convey verbatim copies of the Program's source code as you
|
||||||
|
receive it, in any medium, provided that you conspicuously and
|
||||||
|
appropriately publish on each copy an appropriate copyright notice;
|
||||||
|
keep intact all notices stating that this License and any
|
||||||
|
non-permissive terms added in accord with section 7 apply to the code;
|
||||||
|
keep intact all notices of the absence of any warranty; and give all
|
||||||
|
recipients a copy of this License along with the Program.
|
||||||
|
|
||||||
|
You may charge any price or no price for each copy that you convey,
|
||||||
|
and you may offer support or warranty protection for a fee.
|
||||||
|
|
||||||
|
5. Conveying Modified Source Versions.
|
||||||
|
|
||||||
|
You may convey a work based on the Program, or the modifications to
|
||||||
|
produce it from the Program, in the form of source code under the
|
||||||
|
terms of section 4, provided that you also meet all of these conditions:
|
||||||
|
|
||||||
|
a) The work must carry prominent notices stating that you modified
|
||||||
|
it, and giving a relevant date.
|
||||||
|
|
||||||
|
b) The work must carry prominent notices stating that it is
|
||||||
|
released under this License and any conditions added under section
|
||||||
|
7. This requirement modifies the requirement in section 4 to
|
||||||
|
"keep intact all notices".
|
||||||
|
|
||||||
|
c) You must license the entire work, as a whole, under this
|
||||||
|
License to anyone who comes into possession of a copy. This
|
||||||
|
License will therefore apply, along with any applicable section 7
|
||||||
|
additional terms, to the whole of the work, and all its parts,
|
||||||
|
regardless of how they are packaged. This License gives no
|
||||||
|
permission to license the work in any other way, but it does not
|
||||||
|
invalidate such permission if you have separately received it.
|
||||||
|
|
||||||
|
d) If the work has interactive user interfaces, each must display
|
||||||
|
Appropriate Legal Notices; however, if the Program has interactive
|
||||||
|
interfaces that do not display Appropriate Legal Notices, your
|
||||||
|
work need not make them do so.
|
||||||
|
|
||||||
|
A compilation of a covered work with other separate and independent
|
||||||
|
works, which are not by their nature extensions of the covered work,
|
||||||
|
and which are not combined with it such as to form a larger program,
|
||||||
|
in or on a volume of a storage or distribution medium, is called an
|
||||||
|
"aggregate" if the compilation and its resulting copyright are not
|
||||||
|
used to limit the access or legal rights of the compilation's users
|
||||||
|
beyond what the individual works permit. Inclusion of a covered work
|
||||||
|
in an aggregate does not cause this License to apply to the other
|
||||||
|
parts of the aggregate.
|
||||||
|
|
||||||
|
6. Conveying Non-Source Forms.
|
||||||
|
|
||||||
|
You may convey a covered work in object code form under the terms
|
||||||
|
of sections 4 and 5, provided that you also convey the
|
||||||
|
machine-readable Corresponding Source under the terms of this License,
|
||||||
|
in one of these ways:
|
||||||
|
|
||||||
|
a) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by the
|
||||||
|
Corresponding Source fixed on a durable physical medium
|
||||||
|
customarily used for software interchange.
|
||||||
|
|
||||||
|
b) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by a
|
||||||
|
written offer, valid for at least three years and valid for as
|
||||||
|
long as you offer spare parts or customer support for that product
|
||||||
|
model, to give anyone who possesses the object code either (1) a
|
||||||
|
copy of the Corresponding Source for all the software in the
|
||||||
|
product that is covered by this License, on a durable physical
|
||||||
|
medium customarily used for software interchange, for a price no
|
||||||
|
more than your reasonable cost of physically performing this
|
||||||
|
conveying of source, or (2) access to copy the
|
||||||
|
Corresponding Source from a network server at no charge.
|
||||||
|
|
||||||
|
c) Convey individual copies of the object code with a copy of the
|
||||||
|
written offer to provide the Corresponding Source. This
|
||||||
|
alternative is allowed only occasionally and noncommercially, and
|
||||||
|
only if you received the object code with such an offer, in accord
|
||||||
|
with subsection 6b.
|
||||||
|
|
||||||
|
d) Convey the object code by offering access from a designated
|
||||||
|
place (gratis or for a charge), and offer equivalent access to the
|
||||||
|
Corresponding Source in the same way through the same place at no
|
||||||
|
further charge. You need not require recipients to copy the
|
||||||
|
Corresponding Source along with the object code. If the place to
|
||||||
|
copy the object code is a network server, the Corresponding Source
|
||||||
|
may be on a different server (operated by you or a third party)
|
||||||
|
that supports equivalent copying facilities, provided you maintain
|
||||||
|
clear directions next to the object code saying where to find the
|
||||||
|
Corresponding Source. Regardless of what server hosts the
|
||||||
|
Corresponding Source, you remain obligated to ensure that it is
|
||||||
|
available for as long as needed to satisfy these requirements.
|
||||||
|
|
||||||
|
e) Convey the object code using peer-to-peer transmission, provided
|
||||||
|
you inform other peers where the object code and Corresponding
|
||||||
|
Source of the work are being offered to the general public at no
|
||||||
|
charge under subsection 6d.
|
||||||
|
|
||||||
|
A separable portion of the object code, whose source code is excluded
|
||||||
|
from the Corresponding Source as a System Library, need not be
|
||||||
|
included in conveying the object code work.
|
||||||
|
|
||||||
|
A "User Product" is either (1) a "consumer product", which means any
|
||||||
|
tangible personal property which is normally used for personal, family,
|
||||||
|
or household purposes, or (2) anything designed or sold for incorporation
|
||||||
|
into a dwelling. In determining whether a product is a consumer product,
|
||||||
|
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||||
|
product received by a particular user, "normally used" refers to a
|
||||||
|
typical or common use of that class of product, regardless of the status
|
||||||
|
of the particular user or of the way in which the particular user
|
||||||
|
actually uses, or expects or is expected to use, the product. A product
|
||||||
|
is a consumer product regardless of whether the product has substantial
|
||||||
|
commercial, industrial or non-consumer uses, unless such uses represent
|
||||||
|
the only significant mode of use of the product.
|
||||||
|
|
||||||
|
"Installation Information" for a User Product means any methods,
|
||||||
|
procedures, authorization keys, or other information required to install
|
||||||
|
and execute modified versions of a covered work in that User Product from
|
||||||
|
a modified version of its Corresponding Source. The information must
|
||||||
|
suffice to ensure that the continued functioning of the modified object
|
||||||
|
code is in no case prevented or interfered with solely because
|
||||||
|
modification has been made.
|
||||||
|
|
||||||
|
If you convey an object code work under this section in, or with, or
|
||||||
|
specifically for use in, a User Product, and the conveying occurs as
|
||||||
|
part of a transaction in which the right of possession and use of the
|
||||||
|
User Product is transferred to the recipient in perpetuity or for a
|
||||||
|
fixed term (regardless of how the transaction is characterized), the
|
||||||
|
Corresponding Source conveyed under this section must be accompanied
|
||||||
|
by the Installation Information. But this requirement does not apply
|
||||||
|
if neither you nor any third party retains the ability to install
|
||||||
|
modified object code on the User Product (for example, the work has
|
||||||
|
been installed in ROM).
|
||||||
|
|
||||||
|
The requirement to provide Installation Information does not include a
|
||||||
|
requirement to continue to provide support service, warranty, or updates
|
||||||
|
for a work that has been modified or installed by the recipient, or for
|
||||||
|
the User Product in which it has been modified or installed. Access to a
|
||||||
|
network may be denied when the modification itself materially and
|
||||||
|
adversely affects the operation of the network or violates the rules and
|
||||||
|
protocols for communication across the network.
|
||||||
|
|
||||||
|
Corresponding Source conveyed, and Installation Information provided,
|
||||||
|
in accord with this section must be in a format that is publicly
|
||||||
|
documented (and with an implementation available to the public in
|
||||||
|
source code form), and must require no special password or key for
|
||||||
|
unpacking, reading or copying.
|
||||||
|
|
||||||
|
7. Additional Terms.
|
||||||
|
|
||||||
|
"Additional permissions" are terms that supplement the terms of this
|
||||||
|
License by making exceptions from one or more of its conditions.
|
||||||
|
Additional permissions that are applicable to the entire Program shall
|
||||||
|
be treated as though they were included in this License, to the extent
|
||||||
|
that they are valid under applicable law. If additional permissions
|
||||||
|
apply only to part of the Program, that part may be used separately
|
||||||
|
under those permissions, but the entire Program remains governed by
|
||||||
|
this License without regard to the additional permissions.
|
||||||
|
|
||||||
|
When you convey a copy of a covered work, you may at your option
|
||||||
|
remove any additional permissions from that copy, or from any part of
|
||||||
|
it. (Additional permissions may be written to require their own
|
||||||
|
removal in certain cases when you modify the work.) You may place
|
||||||
|
additional permissions on material, added by you to a covered work,
|
||||||
|
for which you have or can give appropriate copyright permission.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, for material you
|
||||||
|
add to a covered work, you may (if authorized by the copyright holders of
|
||||||
|
that material) supplement the terms of this License with terms:
|
||||||
|
|
||||||
|
a) Disclaiming warranty or limiting liability differently from the
|
||||||
|
terms of sections 15 and 16 of this License; or
|
||||||
|
|
||||||
|
b) Requiring preservation of specified reasonable legal notices or
|
||||||
|
author attributions in that material or in the Appropriate Legal
|
||||||
|
Notices displayed by works containing it; or
|
||||||
|
|
||||||
|
c) Prohibiting misrepresentation of the origin of that material, or
|
||||||
|
requiring that modified versions of such material be marked in
|
||||||
|
reasonable ways as different from the original version; or
|
||||||
|
|
||||||
|
d) Limiting the use for publicity purposes of names of licensors or
|
||||||
|
authors of the material; or
|
||||||
|
|
||||||
|
e) Declining to grant rights under trademark law for use of some
|
||||||
|
trade names, trademarks, or service marks; or
|
||||||
|
|
||||||
|
f) Requiring indemnification of licensors and authors of that
|
||||||
|
material by anyone who conveys the material (or modified versions of
|
||||||
|
it) with contractual assumptions of liability to the recipient, for
|
||||||
|
any liability that these contractual assumptions directly impose on
|
||||||
|
those licensors and authors.
|
||||||
|
|
||||||
|
All other non-permissive additional terms are considered "further
|
||||||
|
restrictions" within the meaning of section 10. If the Program as you
|
||||||
|
received it, or any part of it, contains a notice stating that it is
|
||||||
|
governed by this License along with a term that is a further
|
||||||
|
restriction, you may remove that term. If a license document contains
|
||||||
|
a further restriction but permits relicensing or conveying under this
|
||||||
|
License, you may add to a covered work material governed by the terms
|
||||||
|
of that license document, provided that the further restriction does
|
||||||
|
not survive such relicensing or conveying.
|
||||||
|
|
||||||
|
If you add terms to a covered work in accord with this section, you
|
||||||
|
must place, in the relevant source files, a statement of the
|
||||||
|
additional terms that apply to those files, or a notice indicating
|
||||||
|
where to find the applicable terms.
|
||||||
|
|
||||||
|
Additional terms, permissive or non-permissive, may be stated in the
|
||||||
|
form of a separately written license, or stated as exceptions;
|
||||||
|
the above requirements apply either way.
|
||||||
|
|
||||||
|
8. Termination.
|
||||||
|
|
||||||
|
You may not propagate or modify a covered work except as expressly
|
||||||
|
provided under this License. Any attempt otherwise to propagate or
|
||||||
|
modify it is void, and will automatically terminate your rights under
|
||||||
|
this License (including any patent licenses granted under the third
|
||||||
|
paragraph of section 11).
|
||||||
|
|
||||||
|
However, if you cease all violation of this License, then your
|
||||||
|
license from a particular copyright holder is reinstated (a)
|
||||||
|
provisionally, unless and until the copyright holder explicitly and
|
||||||
|
finally terminates your license, and (b) permanently, if the copyright
|
||||||
|
holder fails to notify you of the violation by some reasonable means
|
||||||
|
prior to 60 days after the cessation.
|
||||||
|
|
||||||
|
Moreover, your license from a particular copyright holder is
|
||||||
|
reinstated permanently if the copyright holder notifies you of the
|
||||||
|
violation by some reasonable means, this is the first time you have
|
||||||
|
received notice of violation of this License (for any work) from that
|
||||||
|
copyright holder, and you cure the violation prior to 30 days after
|
||||||
|
your receipt of the notice.
|
||||||
|
|
||||||
|
Termination of your rights under this section does not terminate the
|
||||||
|
licenses of parties who have received copies or rights from you under
|
||||||
|
this License. If your rights have been terminated and not permanently
|
||||||
|
reinstated, you do not qualify to receive new licenses for the same
|
||||||
|
material under section 10.
|
||||||
|
|
||||||
|
9. Acceptance Not Required for Having Copies.
|
||||||
|
|
||||||
|
You are not required to accept this License in order to receive or
|
||||||
|
run a copy of the Program. Ancillary propagation of a covered work
|
||||||
|
occurring solely as a consequence of using peer-to-peer transmission
|
||||||
|
to receive a copy likewise does not require acceptance. However,
|
||||||
|
nothing other than this License grants you permission to propagate or
|
||||||
|
modify any covered work. These actions infringe copyright if you do
|
||||||
|
not accept this License. Therefore, by modifying or propagating a
|
||||||
|
covered work, you indicate your acceptance of this License to do so.
|
||||||
|
|
||||||
|
10. Automatic Licensing of Downstream Recipients.
|
||||||
|
|
||||||
|
Each time you convey a covered work, the recipient automatically
|
||||||
|
receives a license from the original licensors, to run, modify and
|
||||||
|
propagate that work, subject to this License. You are not responsible
|
||||||
|
for enforcing compliance by third parties with this License.
|
||||||
|
|
||||||
|
An "entity transaction" is a transaction transferring control of an
|
||||||
|
organization, or substantially all assets of one, or subdividing an
|
||||||
|
organization, or merging organizations. If propagation of a covered
|
||||||
|
work results from an entity transaction, each party to that
|
||||||
|
transaction who receives a copy of the work also receives whatever
|
||||||
|
licenses to the work the party's predecessor in interest had or could
|
||||||
|
give under the previous paragraph, plus a right to possession of the
|
||||||
|
Corresponding Source of the work from the predecessor in interest, if
|
||||||
|
the predecessor has it or can get it with reasonable efforts.
|
||||||
|
|
||||||
|
You may not impose any further restrictions on the exercise of the
|
||||||
|
rights granted or affirmed under this License. For example, you may
|
||||||
|
not impose a license fee, royalty, or other charge for exercise of
|
||||||
|
rights granted under this License, and you may not initiate litigation
|
||||||
|
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||||
|
any patent claim is infringed by making, using, selling, offering for
|
||||||
|
sale, or importing the Program or any portion of it.
|
||||||
|
|
||||||
|
11. Patents.
|
||||||
|
|
||||||
|
A "contributor" is a copyright holder who authorizes use under this
|
||||||
|
License of the Program or a work on which the Program is based. The
|
||||||
|
work thus licensed is called the contributor's "contributor version".
|
||||||
|
|
||||||
|
A contributor's "essential patent claims" are all patent claims
|
||||||
|
owned or controlled by the contributor, whether already acquired or
|
||||||
|
hereafter acquired, that would be infringed by some manner, permitted
|
||||||
|
by this License, of making, using, or selling its contributor version,
|
||||||
|
but do not include claims that would be infringed only as a
|
||||||
|
consequence of further modification of the contributor version. For
|
||||||
|
purposes of this definition, "control" includes the right to grant
|
||||||
|
patent sublicenses in a manner consistent with the requirements of
|
||||||
|
this License.
|
||||||
|
|
||||||
|
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||||
|
patent license under the contributor's essential patent claims, to
|
||||||
|
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||||
|
propagate the contents of its contributor version.
|
||||||
|
|
||||||
|
In the following three paragraphs, a "patent license" is any express
|
||||||
|
agreement or commitment, however denominated, not to enforce a patent
|
||||||
|
(such as an express permission to practice a patent or covenant not to
|
||||||
|
sue for patent infringement). To "grant" such a patent license to a
|
||||||
|
party means to make such an agreement or commitment not to enforce a
|
||||||
|
patent against the party.
|
||||||
|
|
||||||
|
If you convey a covered work, knowingly relying on a patent license,
|
||||||
|
and the Corresponding Source of the work is not available for anyone
|
||||||
|
to copy, free of charge and under the terms of this License, through a
|
||||||
|
publicly available network server or other readily accessible means,
|
||||||
|
then you must either (1) cause the Corresponding Source to be so
|
||||||
|
available, or (2) arrange to deprive yourself of the benefit of the
|
||||||
|
patent license for this particular work, or (3) arrange, in a manner
|
||||||
|
consistent with the requirements of this License, to extend the patent
|
||||||
|
license to downstream recipients. "Knowingly relying" means you have
|
||||||
|
actual knowledge that, but for the patent license, your conveying the
|
||||||
|
covered work in a country, or your recipient's use of the covered work
|
||||||
|
in a country, would infringe one or more identifiable patents in that
|
||||||
|
country that you have reason to believe are valid.
|
||||||
|
|
||||||
|
If, pursuant to or in connection with a single transaction or
|
||||||
|
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||||
|
covered work, and grant a patent license to some of the parties
|
||||||
|
receiving the covered work authorizing them to use, propagate, modify
|
||||||
|
or convey a specific copy of the covered work, then the patent license
|
||||||
|
you grant is automatically extended to all recipients of the covered
|
||||||
|
work and works based on it.
|
||||||
|
|
||||||
|
A patent license is "discriminatory" if it does not include within
|
||||||
|
the scope of its coverage, prohibits the exercise of, or is
|
||||||
|
conditioned on the non-exercise of one or more of the rights that are
|
||||||
|
specifically granted under this License. You may not convey a covered
|
||||||
|
work if you are a party to an arrangement with a third party that is
|
||||||
|
in the business of distributing software, under which you make payment
|
||||||
|
to the third party based on the extent of your activity of conveying
|
||||||
|
the work, and under which the third party grants, to any of the
|
||||||
|
parties who would receive the covered work from you, a discriminatory
|
||||||
|
patent license (a) in connection with copies of the covered work
|
||||||
|
conveyed by you (or copies made from those copies), or (b) primarily
|
||||||
|
for and in connection with specific products or compilations that
|
||||||
|
contain the covered work, unless you entered into that arrangement,
|
||||||
|
or that patent license was granted, prior to 28 March 2007.
|
||||||
|
|
||||||
|
Nothing in this License shall be construed as excluding or limiting
|
||||||
|
any implied license or other defenses to infringement that may
|
||||||
|
otherwise be available to you under applicable patent law.
|
||||||
|
|
||||||
|
12. No Surrender of Others' Freedom.
|
||||||
|
|
||||||
|
If conditions are imposed on you (whether by court order, agreement or
|
||||||
|
otherwise) that contradict the conditions of this License, they do not
|
||||||
|
excuse you from the conditions of this License. If you cannot convey a
|
||||||
|
covered work so as to satisfy simultaneously your obligations under this
|
||||||
|
License and any other pertinent obligations, then as a consequence you may
|
||||||
|
not convey it at all. For example, if you agree to terms that obligate you
|
||||||
|
to collect a royalty for further conveying from those to whom you convey
|
||||||
|
the Program, the only way you could satisfy both those terms and this
|
||||||
|
License would be to refrain entirely from conveying the Program.
|
||||||
|
|
||||||
|
13. Use with the GNU Affero General Public License.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, you have
|
||||||
|
permission to link or combine any covered work with a work licensed
|
||||||
|
under version 3 of the GNU Affero General Public License into a single
|
||||||
|
combined work, and to convey the resulting work. The terms of this
|
||||||
|
License will continue to apply to the part which is the covered work,
|
||||||
|
but the special requirements of the GNU Affero General Public License,
|
||||||
|
section 13, concerning interaction through a network will apply to the
|
||||||
|
combination as such.
|
||||||
|
|
||||||
|
14. Revised Versions of this License.
|
||||||
|
|
||||||
|
The Free Software Foundation may publish revised and/or new versions of
|
||||||
|
the GNU General Public License from time to time. Such new versions will
|
||||||
|
be similar in spirit to the present version, but may differ in detail to
|
||||||
|
address new problems or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the
|
||||||
|
Program specifies that a certain numbered version of the GNU General
|
||||||
|
Public License "or any later version" applies to it, you have the
|
||||||
|
option of following the terms and conditions either of that numbered
|
||||||
|
version or of any later version published by the Free Software
|
||||||
|
Foundation. If the Program does not specify a version number of the
|
||||||
|
GNU General Public License, you may choose any version ever published
|
||||||
|
by the Free Software Foundation.
|
||||||
|
|
||||||
|
If the Program specifies that a proxy can decide which future
|
||||||
|
versions of the GNU General Public License can be used, that proxy's
|
||||||
|
public statement of acceptance of a version permanently authorizes you
|
||||||
|
to choose that version for the Program.
|
||||||
|
|
||||||
|
Later license versions may give you additional or different
|
||||||
|
permissions. However, no additional obligations are imposed on any
|
||||||
|
author or copyright holder as a result of your choosing to follow a
|
||||||
|
later version.
|
||||||
|
|
||||||
|
15. Disclaimer of Warranty.
|
||||||
|
|
||||||
|
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||||
|
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||||
|
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||||
|
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||||
|
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||||
|
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||||
|
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||||
|
|
||||||
|
16. Limitation of Liability.
|
||||||
|
|
||||||
|
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||||
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||||
|
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||||
|
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||||
|
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||||
|
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||||
|
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||||
|
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||||
|
SUCH DAMAGES.
|
||||||
|
|
||||||
|
17. Interpretation of Sections 15 and 16.
|
||||||
|
|
||||||
|
If the disclaimer of warranty and limitation of liability provided
|
||||||
|
above cannot be given local legal effect according to their terms,
|
||||||
|
reviewing courts shall apply local law that most closely approximates
|
||||||
|
an absolute waiver of all civil liability in connection with the
|
||||||
|
Program, unless a warranty or assumption of liability accompanies a
|
||||||
|
copy of the Program in return for a fee.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
How to Apply These Terms to Your New Programs
|
||||||
|
|
||||||
|
If you develop a new program, and you want it to be of the greatest
|
||||||
|
possible use to the public, the best way to achieve this is to make it
|
||||||
|
free software which everyone can redistribute and change under these terms.
|
||||||
|
|
||||||
|
To do so, attach the following notices to the program. It is safest
|
||||||
|
to attach them to the start of each source file to most effectively
|
||||||
|
state the exclusion of warranty; and each file should have at least
|
||||||
|
the "copyright" line and a pointer to where the full notice is found.
|
||||||
|
|
||||||
|
<one line to give the program's name and a brief idea of what it does.>
|
||||||
|
Copyright (C) <year> <name of author>
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Also add information on how to contact you by electronic and paper mail.
|
||||||
|
|
||||||
|
If the program does terminal interaction, make it output a short
|
||||||
|
notice like this when it starts in an interactive mode:
|
||||||
|
|
||||||
|
<program> Copyright (C) <year> <name of author>
|
||||||
|
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||||
|
This is free software, and you are welcome to redistribute it
|
||||||
|
under certain conditions; type `show c' for details.
|
||||||
|
|
||||||
|
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||||
|
parts of the General Public License. Of course, your program's commands
|
||||||
|
might be different; for a GUI interface, you would use an "about box".
|
||||||
|
|
||||||
|
You should also get your employer (if you work as a programmer) or school,
|
||||||
|
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||||
|
For more information on this, and how to apply and follow the GNU GPL, see
|
||||||
|
<https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
The GNU General Public License does not permit incorporating your program
|
||||||
|
into proprietary programs. If your program is a subroutine library, you
|
||||||
|
may consider it more useful to permit linking proprietary applications with
|
||||||
|
the library. If this is what you want to do, use the GNU Lesser General
|
||||||
|
Public License instead of this License. But first, please read
|
||||||
|
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
||||||
@ -0,0 +1,168 @@
|
|||||||
|
# Makefile for Your Golang Monorepo Project
|
||||||
|
PROJECT_NAME := $(shell basename $(CURDIR))
|
||||||
|
|
||||||
|
# Variables
|
||||||
|
GO := go
|
||||||
|
BUILD_DIR := build
|
||||||
|
BIN_DIR := $(BUILD_DIR)/bin
|
||||||
|
LDFLAGS := -w -s
|
||||||
|
|
||||||
|
VERSION := $(shell git describe --tags --always)
|
||||||
|
|
||||||
|
# Targets
|
||||||
|
.PHONY: all help version
|
||||||
|
.PHONY: lint clean
|
||||||
|
|
||||||
|
all: help
|
||||||
|
|
||||||
|
help: ## show help
|
||||||
|
@grep -hE '^[ a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | \
|
||||||
|
awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-17s\033[0m %s\n", $$1, $$2}'
|
||||||
|
|
||||||
|
version: ## show version
|
||||||
|
@echo $(VERSION)
|
||||||
|
|
||||||
|
.PHONY: dev
|
||||||
|
dev: ## run dev server
|
||||||
|
docker compose up --build
|
||||||
|
|
||||||
|
lint: ## run golangci-lint
|
||||||
|
@golangci-lint run ./...
|
||||||
|
|
||||||
|
clean: ## clean build directory
|
||||||
|
@rm -rf cover.out result.json ./deployments/charts/*.tgz
|
||||||
|
@rm -rf $(BUILD_DIR)
|
||||||
|
|
||||||
|
.PHONY: gazelle
|
||||||
|
gazelle: ## run gazelle with bazel
|
||||||
|
@bazel run //:gazelle
|
||||||
|
|
||||||
|
.PHONY: build
|
||||||
|
build: ## build go binary
|
||||||
|
@bazel build //...
|
||||||
|
|
||||||
|
.PHONY: test
|
||||||
|
test: ## test go binary
|
||||||
|
@bazel test --verbose_failures //...
|
||||||
|
|
||||||
|
.PHONY: coverage
|
||||||
|
coverage: ## generate coverage report
|
||||||
|
@go test -json -coverprofile=cover.out ./... >result.json
|
||||||
|
|
||||||
|
.PHONY: gen-swagger
|
||||||
|
gen-swagger: ## generate swagger
|
||||||
|
@swag init -q -g impl.go -d ./adapter/restaurant/restful,./entity,./pkg \
|
||||||
|
-o ./api/restaurant/restful --instanceName restaurant_restful --parseDependency
|
||||||
|
|
||||||
|
@swag init -q -g impl.go -d ./adapter/order/restful,./entity,./pkg \
|
||||||
|
-o ./api/order/restful --instanceName order_restful --parseDependency
|
||||||
|
|
||||||
|
@swag init -q -g impl.go -d ./adapter/payment/restful,./entity,./pkg \
|
||||||
|
-o ./api/payment/restful --instanceName payment_restful --parseDependency
|
||||||
|
|
||||||
|
@swag init -q -g impl.go -d ./adapter/user/restful,./entity,./pkg \
|
||||||
|
-o ./api/user/restful --instanceName user_restful --parseDependency
|
||||||
|
|
||||||
|
@swag init -q -g impl.go -d ./adapter/logistics/restful,./entity,./pkg \
|
||||||
|
-o ./api/logistics/restful --instanceName logistics_restful --parseDependency
|
||||||
|
|
||||||
|
@swag init -q -g impl.go -d ./adapter/notify/restful,./entity,./pkg \
|
||||||
|
-o ./api/notify/restful --instanceName notify_restful --parseDependency
|
||||||
|
|
||||||
|
### testing
|
||||||
|
.PHONY: test-api-order
|
||||||
|
test-api-order: ## test api
|
||||||
|
@k6 run --vus=1 --iterations=1 ./tests/k6/order.api.test.js
|
||||||
|
|
||||||
|
.PHONY: test-api-user
|
||||||
|
test-api-user: ## test api user
|
||||||
|
@k6 run --vus=1 --iterations=1 ./tests/k6/user.api.test.js
|
||||||
|
|
||||||
|
.PHONY: test-stress
|
||||||
|
test-stress: ## test load
|
||||||
|
@k6 run --env SCENARIO=peak_load ./tests/k6/order.api.test.js --out=cloud
|
||||||
|
|
||||||
|
.PHONY: test-load
|
||||||
|
test-load: ## test stress
|
||||||
|
@k6 run --env SCENARIO=average_load ./tests/k6/order.api.test.js --out=cloud
|
||||||
|
|
||||||
|
## docker
|
||||||
|
.PHONY: docker-push
|
||||||
|
docker-push: ## push docker image
|
||||||
|
@bazel run //:push --platforms=@rules_go//go/toolchain:linux_amd64 -- --tag=$(VERSION)
|
||||||
|
|
||||||
|
## deployments
|
||||||
|
DEPLOY_TO := prod
|
||||||
|
HELM_REPO_NAME := blackhorseya
|
||||||
|
|
||||||
|
.PHONY: deploy
|
||||||
|
deploy: deploy-app deploy-storage ## deploy all
|
||||||
|
|
||||||
|
.PHONY: deploy-app
|
||||||
|
deploy-app: deploy-restaurant-restful deploy-order-restful deploy-payment-restful deploy-user-restful deploy-logistics-restful deploy-notify-restful ## deploy app
|
||||||
|
|
||||||
|
.PHONY: deploy-restaurant-restful
|
||||||
|
deploy-restaurant-restful: ## deploy restaurant
|
||||||
|
@helm upgrade $(DEPLOY_TO)-godine-restaurant-restful $(HELM_REPO_NAME)/godine \
|
||||||
|
--install --namespace $(PROJECT_NAME) \
|
||||||
|
--history-max 3 \
|
||||||
|
--values ./deployments/$(DEPLOY_TO)/godine-restaurant-restful.yaml
|
||||||
|
|
||||||
|
.PHONY: deploy-payment-restful
|
||||||
|
deploy-payment-restful: ## deploy payment
|
||||||
|
@helm upgrade $(DEPLOY_TO)-godine-payment-restful $(HELM_REPO_NAME)/godine \
|
||||||
|
--install --namespace $(PROJECT_NAME) \
|
||||||
|
--history-max 3 \
|
||||||
|
--values ./deployments/$(DEPLOY_TO)/godine-payment-restful.yaml
|
||||||
|
|
||||||
|
.PHONY: deploy-order-restful
|
||||||
|
deploy-order-restful: ## deploy order
|
||||||
|
@helm upgrade $(DEPLOY_TO)-godine-order-restful $(HELM_REPO_NAME)/godine \
|
||||||
|
--install --namespace $(PROJECT_NAME) \
|
||||||
|
--history-max 3 \
|
||||||
|
--values ./deployments/$(DEPLOY_TO)/godine-order-restful.yaml
|
||||||
|
|
||||||
|
.PHONY: deploy-user-restful
|
||||||
|
deploy-user-restful: ## deploy user
|
||||||
|
@helm upgrade $(DEPLOY_TO)-godine-user-restful $(HELM_REPO_NAME)/godine \
|
||||||
|
--install --namespace $(PROJECT_NAME) \
|
||||||
|
--history-max 3 \
|
||||||
|
--values ./deployments/$(DEPLOY_TO)/godine-user-restful.yaml
|
||||||
|
|
||||||
|
.PHONY: deploy-logistics-restful
|
||||||
|
deploy-logistics-restful: ## deploy logistics
|
||||||
|
@helm upgrade $(DEPLOY_TO)-godine-logistics-restful $(HELM_REPO_NAME)/godine \
|
||||||
|
--install --namespace $(PROJECT_NAME) \
|
||||||
|
--history-max 3 \
|
||||||
|
--values ./deployments/$(DEPLOY_TO)/godine-logistics-restful.yaml
|
||||||
|
|
||||||
|
.PHONY: deploy-notify-restful
|
||||||
|
deploy-notify-restful: ## deploy notify
|
||||||
|
@helm upgrade $(DEPLOY_TO)-godine-notify-restful $(HELM_REPO_NAME)/godine \
|
||||||
|
--install --namespace $(PROJECT_NAME) \
|
||||||
|
--history-max 3 \
|
||||||
|
--values ./deployments/$(DEPLOY_TO)/godine-notify-restful.yaml
|
||||||
|
|
||||||
|
.PHONY: deploy-storage
|
||||||
|
deploy-storage: deploy-mariadb deploy-mongodb deploy-redis ## deploy storage
|
||||||
|
|
||||||
|
.PHONY: deploy-mariadb
|
||||||
|
deploy-mariadb: ## deploy mariadb
|
||||||
|
@helm upgrade $(DEPLOY_TO)-godine-mariadb bitnami/mariadb \
|
||||||
|
--install --namespace $(PROJECT_NAME) \
|
||||||
|
--history-max 3 \
|
||||||
|
--values ./deployments/$(DEPLOY_TO)/godine-mariadb.yaml
|
||||||
|
|
||||||
|
.PHONY: deploy-mongodb
|
||||||
|
deploy-mongodb: ## deploy mongodb
|
||||||
|
@helm upgrade $(DEPLOY_TO)-godine-mongodb bitnami/mongodb \
|
||||||
|
--install --namespace $(PROJECT_NAME) \
|
||||||
|
--history-max 3 \
|
||||||
|
--values ./deployments/$(DEPLOY_TO)/godine-mongodb.yaml
|
||||||
|
|
||||||
|
.PHONY: deploy-redis
|
||||||
|
deploy-redis: ## deploy redis
|
||||||
|
@helm upgrade $(DEPLOY_TO)-godine-redis bitnami/redis \
|
||||||
|
--install --namespace $(PROJECT_NAME) \
|
||||||
|
--history-max 3 \
|
||||||
|
--values ./deployments/$(DEPLOY_TO)/godine-redis.yaml
|
||||||
@ -0,0 +1,22 @@
|
|||||||
|
### Building and running your application
|
||||||
|
|
||||||
|
When you're ready, start your application by running:
|
||||||
|
`docker compose up --build`.
|
||||||
|
|
||||||
|
Your application will be available at http://localhost:8080.
|
||||||
|
|
||||||
|
### Deploying your application to the cloud
|
||||||
|
|
||||||
|
First, build your image, e.g.: `docker build -t myapp .`.
|
||||||
|
If your cloud uses a different CPU architecture than your development
|
||||||
|
machine (e.g., you are on a Mac M1 and your cloud provider is amd64),
|
||||||
|
you'll want to build the image for that platform, e.g.:
|
||||||
|
`docker build --platform=linux/amd64 -t myapp .`.
|
||||||
|
|
||||||
|
Then, push it to your registry, e.g. `docker push myregistry.com/myapp`.
|
||||||
|
|
||||||
|
Consult Docker's [getting started](https://docs.docker.com/go/get-started-sharing/)
|
||||||
|
docs for more detail on building and pushing.
|
||||||
|
|
||||||
|
### References
|
||||||
|
* [Docker's Go guide](https://docs.docker.com/language/golang/)
|
||||||
@ -1,35 +1 @@
|
|||||||
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
workspace(name = "hello")
|
||||||
|
|
||||||
http_archive(
|
|
||||||
name = "io_bazel_rules_go",
|
|
||||||
integrity = "sha256-M6zErg9wUC20uJPJ/B3Xqb+ZjCPn/yxFF3QdQEmpdvg=",
|
|
||||||
urls = [
|
|
||||||
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.48.0/rules_go-v0.48.0.zip",
|
|
||||||
"https://github.com/bazelbuild/rules_go/releases/download/v0.48.0/rules_go-v0.48.0.zip",
|
|
||||||
],
|
|
||||||
)
|
|
||||||
|
|
||||||
http_archive(
|
|
||||||
name = "bazel_gazelle",
|
|
||||||
integrity = "sha256-12v3pg/YsFBEQJDfooN6Tq+YKeEWVhjuNdzspcvfWNU=",
|
|
||||||
urls = [
|
|
||||||
"https://mirror.bazel.build/github.com/bazelbuild/bazel-gazelle/releases/download/v0.37.0/bazel-gazelle-v0.37.0.tar.gz",
|
|
||||||
"https://github.com/bazelbuild/bazel-gazelle/releases/download/v0.37.0/bazel-gazelle-v0.37.0.tar.gz",
|
|
||||||
],
|
|
||||||
)
|
|
||||||
|
|
||||||
load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies")
|
|
||||||
load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")
|
|
||||||
load("//:deps.bzl", "go_dependencies")
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# gazelle:repository_macro deps.bzl%go_dependencies
|
|
||||||
# go_dependencies()
|
|
||||||
|
|
||||||
go_rules_dependencies()
|
|
||||||
|
|
||||||
go_register_toolchains(version = "1.22.5")
|
|
||||||
|
|
||||||
gazelle_dependencies()
|
|
||||||
|
|||||||
@ -1 +0,0 @@
|
|||||||
/home/edison/.cache/bazel/_bazel_edison/333b9a668e98faeb0db1e492ecfd95a4/execroot/_main
|
|
||||||
@ -1 +0,0 @@
|
|||||||
/home/edison/.cache/bazel/_bazel_edison/333b9a668e98faeb0db1e492ecfd95a4/execroot/_main/bazel-out/k8-fastbuild/bin
|
|
||||||
@ -1 +0,0 @@
|
|||||||
/home/edison/.cache/bazel/_bazel_edison/546f64dbc186a8e485ecb66e50d42c8e/execroot/_main
|
|
||||||
@ -1 +0,0 @@
|
|||||||
/home/edison/.cache/bazel/_bazel_edison/333b9a668e98faeb0db1e492ecfd95a4/execroot/_main/bazel-out
|
|
||||||
@ -1 +0,0 @@
|
|||||||
/home/edison/.cache/bazel/_bazel_edison/333b9a668e98faeb0db1e492ecfd95a4/execroot/_main/bazel-out/k8-fastbuild/testlogs
|
|
||||||
@ -0,0 +1,153 @@
|
|||||||
|
# Comments are provided throughout this file to help you get started.
|
||||||
|
# If you need more help, visit the Docker Compose reference guide at
|
||||||
|
# https://docs.docker.com/go/compose-spec-reference/
|
||||||
|
|
||||||
|
# Here the instructions define your application as a service called "server".
|
||||||
|
# This service is built from the Dockerfile in the current directory.
|
||||||
|
# You can add other services your application may depend on here, such as a
|
||||||
|
# database or a cache. For examples, see the Awesome Compose repository:
|
||||||
|
# https://github.com/docker/awesome-compose
|
||||||
|
services:
|
||||||
|
restaurant_restful:
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
target: final
|
||||||
|
command:
|
||||||
|
- --config=/app/configs/example.yaml
|
||||||
|
- start
|
||||||
|
- restaurant-restful
|
||||||
|
ports:
|
||||||
|
- 1992:1992
|
||||||
|
volumes:
|
||||||
|
- ./configs/example.yaml:/app/configs/example.yaml
|
||||||
|
depends_on:
|
||||||
|
- mongodb
|
||||||
|
|
||||||
|
payment_restful:
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
target: final
|
||||||
|
command:
|
||||||
|
- --config=/app/configs/example.yaml
|
||||||
|
- start
|
||||||
|
- payment-restful
|
||||||
|
ports:
|
||||||
|
- 1997:1997
|
||||||
|
volumes:
|
||||||
|
- ./configs/example.yaml:/app/configs/example.yaml
|
||||||
|
depends_on:
|
||||||
|
- mongodb
|
||||||
|
|
||||||
|
order_restful:
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
target: final
|
||||||
|
command:
|
||||||
|
- --config=/app/configs/example.yaml
|
||||||
|
- start
|
||||||
|
- order-restful
|
||||||
|
ports:
|
||||||
|
- 1993:1993
|
||||||
|
volumes:
|
||||||
|
- ./configs/example.yaml:/app/configs/example.yaml
|
||||||
|
depends_on:
|
||||||
|
mariadb:
|
||||||
|
condition: service_healthy
|
||||||
|
|
||||||
|
user_restful:
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
target: final
|
||||||
|
command:
|
||||||
|
- --config=/app/configs/example.yaml
|
||||||
|
- start
|
||||||
|
- user-restful
|
||||||
|
ports:
|
||||||
|
- 1994:1994
|
||||||
|
volumes:
|
||||||
|
- ./configs/example.yaml:/app/configs/example.yaml
|
||||||
|
depends_on:
|
||||||
|
- mongodb
|
||||||
|
- mariadb
|
||||||
|
|
||||||
|
logistics_restful:
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
target: final
|
||||||
|
command:
|
||||||
|
- --config=/app/configs/example.yaml
|
||||||
|
- start
|
||||||
|
- logistics-restful
|
||||||
|
ports:
|
||||||
|
- 1995:1995
|
||||||
|
volumes:
|
||||||
|
- ./configs/example.yaml:/app/configs/example.yaml
|
||||||
|
depends_on:
|
||||||
|
- mongodb
|
||||||
|
- mariadb
|
||||||
|
|
||||||
|
notify_restful:
|
||||||
|
build:
|
||||||
|
context: .
|
||||||
|
target: final
|
||||||
|
command:
|
||||||
|
- --config=/app/configs/example.yaml
|
||||||
|
- start
|
||||||
|
- notify-restful
|
||||||
|
ports:
|
||||||
|
- 1996:1996
|
||||||
|
volumes:
|
||||||
|
- ./configs/example.yaml:/app/configs/example.yaml
|
||||||
|
depends_on:
|
||||||
|
- mongodb
|
||||||
|
- mariadb
|
||||||
|
|
||||||
|
mongodb:
|
||||||
|
image: mongo
|
||||||
|
restart: always
|
||||||
|
environment:
|
||||||
|
MONGO_INITDB_ROOT_USERNAME: admin
|
||||||
|
MONGO_INITDB_ROOT_PASSWORD: changeme
|
||||||
|
volumes:
|
||||||
|
- mongo-data:/data/db
|
||||||
|
|
||||||
|
mariadb:
|
||||||
|
image: mariadb:latest
|
||||||
|
restart: always
|
||||||
|
environment:
|
||||||
|
MYSQL_ROOT_PASSWORD: changeme
|
||||||
|
MYSQL_DATABASE: godine
|
||||||
|
volumes:
|
||||||
|
- mariadb-data:/var/lib/mysql
|
||||||
|
healthcheck:
|
||||||
|
test: ["CMD", "healthcheck.sh", "--connect", "--innodb_initialized"]
|
||||||
|
start_period: 10s
|
||||||
|
interval: 10s
|
||||||
|
timeout: 5s
|
||||||
|
retries: 3
|
||||||
|
|
||||||
|
redis:
|
||||||
|
image: redis:7
|
||||||
|
restart: always
|
||||||
|
|
||||||
|
otel-collector:
|
||||||
|
image: otel/opentelemetry-collector-contrib:latest
|
||||||
|
command: [ "--config=/etc/otel-collector-config.yaml" ]
|
||||||
|
volumes:
|
||||||
|
- ./configs/otel-collector-config.yaml:/etc/otel-collector-config.yaml
|
||||||
|
|
||||||
|
jaeger:
|
||||||
|
image: jaegertracing/all-in-one:latest
|
||||||
|
ports:
|
||||||
|
- 26686:16686
|
||||||
|
|
||||||
|
prometheus:
|
||||||
|
image: prom/prometheus:latest
|
||||||
|
volumes:
|
||||||
|
- ./configs/prometheus.yml:/etc/prometheus/prometheus.yml
|
||||||
|
ports:
|
||||||
|
- 29090:9090
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
mongo-data:
|
||||||
|
mariadb-data:
|
||||||
@ -1,33 +0,0 @@
|
|||||||
load("@bazel_gazelle//:deps.bzl", "go_repository")
|
|
||||||
|
|
||||||
def go_dependencies():
|
|
||||||
go_repository(
|
|
||||||
name = "com_github_bsm_ginkgo_v2",
|
|
||||||
importpath = "github.com/bsm/ginkgo/v2",
|
|
||||||
sum = "h1:Ny8MWAHyOepLGlLKYmXG4IEkioBysk6GpaRTLC8zwWs=",
|
|
||||||
version = "v2.12.0",
|
|
||||||
)
|
|
||||||
go_repository(
|
|
||||||
name = "com_github_bsm_gomega",
|
|
||||||
importpath = "github.com/bsm/gomega",
|
|
||||||
sum = "h1:yeMWxP2pV2fG3FgAODIY8EiRE3dy0aeFYt4l7wh6yKA=",
|
|
||||||
version = "v1.27.10",
|
|
||||||
)
|
|
||||||
go_repository(
|
|
||||||
name = "com_github_cespare_xxhash_v2",
|
|
||||||
importpath = "github.com/cespare/xxhash/v2",
|
|
||||||
sum = "h1:DC2CZ1Ep5Y4k3ZQ899DldepgrayRUGE6BBZ/cd9Cj44=",
|
|
||||||
version = "v2.2.0",
|
|
||||||
)
|
|
||||||
go_repository(
|
|
||||||
name = "com_github_dgryski_go_rendezvous",
|
|
||||||
importpath = "github.com/dgryski/go-rendezvous",
|
|
||||||
sum = "h1:lO4WD4F/rVNCu3HqELle0jiPLLBs70cWOduZpkS1E78=",
|
|
||||||
version = "v0.0.0-20200823014737-9f7001d12a5f",
|
|
||||||
)
|
|
||||||
go_repository(
|
|
||||||
name = "com_github_redis_go_redis_v9",
|
|
||||||
importpath = "github.com/redis/go-redis/v9",
|
|
||||||
sum = "h1:HHDteefn6ZkTtY5fGUE8tj8uy85AHk6zP7CpzIAM0y4=",
|
|
||||||
version = "v9.6.1",
|
|
||||||
)
|
|
||||||
@ -1,9 +0,0 @@
|
|||||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
||||||
|
|
||||||
go_library(
|
|
||||||
name = "lib",
|
|
||||||
srcs = ["lib.go"],
|
|
||||||
importpath = "hello/lib",
|
|
||||||
visibility = ["//visibility:public"],
|
|
||||||
deps = ["@com_github_redis_go_redis_v9//:go-redis"],
|
|
||||||
)
|
|
||||||
@ -1,12 +0,0 @@
|
|||||||
load("@io_bazel_rules_go//go:def.bzl", "go_library")
|
|
||||||
|
|
||||||
go_library(
|
|
||||||
name = "lib",
|
|
||||||
srcs = ["lib.go"],
|
|
||||||
importpath = "hello/lib",
|
|
||||||
visibility = ["//visibility:public"],
|
|
||||||
deps = ["@com_github_redis_go_redis_v9//:go-redis"],
|
|
||||||
# deps = [
|
|
||||||
# # "@com_github_redis_go_redis_v9//:go-redis",
|
|
||||||
# ],
|
|
||||||
)
|
|
||||||
@ -1,18 +0,0 @@
|
|||||||
package lib
|
|
||||||
|
|
||||||
import (
|
|
||||||
"fmt"
|
|
||||||
|
|
||||||
"github.com/redis/go-redis/v9"
|
|
||||||
)
|
|
||||||
|
|
||||||
func Lib() {
|
|
||||||
fmt.Println("lib")
|
|
||||||
rdb := redis.NewClient(&redis.Options{
|
|
||||||
Addr: "localhost:6379",
|
|
||||||
Password: "", // 没有密码,默认值
|
|
||||||
DB: 0, // 默认DB 0
|
|
||||||
})
|
|
||||||
defer rdb.Close()
|
|
||||||
|
|
||||||
}
|
|
||||||
@ -0,0 +1,14 @@
|
|||||||
|
sonar.projectKey=blackhorseya_godine
|
||||||
|
sonar.organization=blackhorseya
|
||||||
|
|
||||||
|
sonar.projectName=godine
|
||||||
|
sonar.projectVersion=1.0
|
||||||
|
|
||||||
|
sonar.sources=.
|
||||||
|
sonar.exclusions=**/*_test.go,**/mock_*.go,**/*_gen.go
|
||||||
|
sonar.tests=.
|
||||||
|
sonar.test.inclusions=**/*_test.go
|
||||||
|
|
||||||
|
sonar.sourceEncoding=UTF-8
|
||||||
|
sonar.go.coverage.reportPaths=cover.out
|
||||||
|
sonar.go.tests.reportPaths=result.json
|
||||||
Loading…
Reference in new issue