Compare commits

..

9 Commits

Author SHA1 Message Date
zero@thinky 9da532e9dc fix(ci): change main package path in build step
ci / build (pull_request) Failing after 3m0s
ci / build (push) Failing after 2m33s
2026-06-14 03:11:20 +03:00
d3m0k1d 9d2f69898a chore: add dockerfile and ci 2026-06-14 03:09:44 +03:00
Mephimeow 35ddfc938c added readme 2026-06-14 03:09:44 +03:00
Mephimeow 57ce3dea5f added some govno to postgres 2026-06-14 03:09:44 +03:00
Mephimeow 56ab583223 postgres 2026-06-14 03:09:44 +03:00
Mephimeow f1308b3be7 added logout 2026-06-14 03:09:44 +03:00
Mephimeow a822d8c3b6 added refresh tocken 2026-06-14 03:09:44 +03:00
Mephimeow 321cba3f9b JWT proto with login & registration 2026-06-14 03:09:44 +03:00
zero@thinky ea645860cf refactor: move main package 2026-06-14 03:04:49 +03:00
3 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -26,4 +26,4 @@ jobs:
- name: Run tests - name: Run tests
run: go test ./... run: go test ./...
- name: Build - name: Build
run: go build -o backend ./cmd/main.go run: go build ./cmd/backend
+1 -1
View File
@@ -1,4 +1,4 @@
PHONY: docs PHONY: docs
docs: docs:
swag init -g cmd/main.go --output docs/ swag init -g cmd/backend/main.go --output docs/
View File