No description
  • Go 99.1%
  • Just 0.7%
  • Dockerfile 0.2%
Find a file
dependabot[bot] 3f2338597d build(deps): bump golang.org/x/crypto from 0.48.0 to 0.49.0
Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.48.0 to 0.49.0.
- [Commits](https://github.com/golang/crypto/compare/v0.48.0...v0.49.0)

---
updated-dependencies:
- dependency-name: golang.org/x/crypto
  dependency-version: 0.49.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-04-12 13:38:57 +04:00
.github fix: golangci-lint version mismatch (closes #135) 2026-03-15 09:34:40 +04:00
cmd/server feat: add endpoints for handling ssh keys 2026-01-31 18:27:00 +04:00
db fix: remove cascade deletion in DB 2026-03-06 20:41:51 +04:00
internal feat: context for other db queries 2026-03-06 20:41:51 +04:00
pkg refactor: format files 2026-01-28 12:29:35 +04:00
tests refactor: change localhost to 127.0.0.1 2026-03-06 20:41:51 +04:00
.air.toml dev: Removed kill-delay in air 2025-11-27 11:03:59 +04:00
.dockerignore fix: fixed dev and full-compose application launch 2025-04-18 22:37:51 +04:00
.gitignore fix: add openapi.json to ignore and remove from repo 2026-01-31 18:10:19 +04:00
.pre-commit-config.yaml feat: Init commit 2025-02-22 16:44:07 +04:00
compose.yml ops: return dragonfly ports again 2026-03-06 20:41:51 +04:00
Dockerfile chore: Bumped up Golang version 2025-09-20 14:47:45 +04:00
go.mod build(deps): bump golang.org/x/crypto from 0.48.0 to 0.49.0 2026-04-12 13:38:57 +04:00
go.sum build(deps): bump golang.org/x/crypto from 0.48.0 to 0.49.0 2026-04-12 13:38:57 +04:00
justfile docs: Removed deprecated information from README 2025-12-23 22:52:31 +04:00
README.md docs: Removed deprecated information from README 2025-12-23 22:52:31 +04:00

MergeMinds backend

Development

Requirements

  • Install docker and docker compose
  • Install just to use justfile recipes
  • (optional, but desired) Install air (for hot reload)

Starting application

  1. Run just dev, it will start all required databases via docker compose
  2. Run application with go run ./cmd/server/main.go or air

Tests

Unit tests are located inside packages, which they're related to, so you can run all unit tests with just test

Functional tests cover primary API usage scenarios and are located inside tests directory. You can run them with just functional-test