Compare commits

..

3 Commits

Author SHA1 Message Date
Jonas Plum
d9f759c879 fix: ui basePath (#1152) 2025-09-21 09:02:00 +00:00
dependabot[bot]
1e3f2f24dc build(deps): bump github.com/go-chi/chi/v5 from 5.2.1 to 5.2.2 (#1149)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-04 07:02:08 +02:00
Jonas Plum
3cb097126c fix: rename binary (#1150) 2025-09-04 04:52:55 +00:00
4 changed files with 9 additions and 9 deletions

View File

@@ -7,7 +7,7 @@ before:
builds:
- id: darwin-amd64
main: ./
binary: golang-cross
binary: catalyst
goos:
- darwin
goarch:
@@ -22,7 +22,7 @@ builds:
- -s -w -X main.version={{.Version}}
- id: linux-arm64
main: ./
binary: golang-cross
binary: catalyst
goos:
- linux
goarch:
@@ -37,7 +37,7 @@ builds:
- -s -w -X main.version={{.Version}}
- id: linux-amd64
main: ./
binary: golang-cross
binary: catalyst
goos:
- linux
goarch:
@@ -52,7 +52,7 @@ builds:
- -s -w -X main.version={{.Version}}
- id: windows-amd64
main: ./
binary: golang-cross
binary: catalyst
goos:
- windows
goarch:
@@ -67,7 +67,7 @@ builds:
- -s -w -X main.version={{.Version}}
- id: windows-arm64
main: ./
binary: golang-cross
binary: catalyst
goos:
- windows
goarch:

2
go.mod
View File

@@ -11,7 +11,7 @@ replace github.com/tus/tusd/v2 v2.8.0 => github.com/SecurityBrewery/tusd/v2 v2.0
require (
github.com/brianvoe/gofakeit/v7 v7.2.1
github.com/go-chi/chi/v5 v5.2.1
github.com/go-chi/chi/v5 v5.2.2
github.com/go-co-op/gocron/v2 v2.16.2
github.com/golang-jwt/jwt/v5 v5.2.2
github.com/google/martian/v3 v3.3.3

4
go.sum
View File

@@ -34,8 +34,8 @@ github.com/fsnotify/fsnotify v1.8.0 h1:dAwr6QBTBZIkG8roQaJjGof0pp0EeF+tNV7YBP3F/
github.com/fsnotify/fsnotify v1.8.0/go.mod h1:8jBTzvmWwFyi3Pb8djgCCO5IBqzKJ/Jwo8TRcHyHii0=
github.com/getkin/kin-openapi v0.132.0 h1:3ISeLMsQzcb5v26yeJrBcdTCEQTag36ZjaGk7MIRUwk=
github.com/getkin/kin-openapi v0.132.0/go.mod h1:3OlG51PCYNsPByuiMB0t4fjnNlIDnaEDsjiKUV8nL58=
github.com/go-chi/chi/v5 v5.2.1 h1:KOIHODQj58PmL80G2Eak4WdvUzjSJSm0vG72crDCqb8=
github.com/go-chi/chi/v5 v5.2.1/go.mod h1:L2yAIGWB3H+phAw1NxKwWM+7eUH/lU8pOMm5hHcoops=
github.com/go-chi/chi/v5 v5.2.2 h1:CMwsvRVTbXVytCk1Wd72Zy1LAsAh9GxMmSNWLHCG618=
github.com/go-chi/chi/v5 v5.2.2/go.mod h1:L2yAIGWB3H+phAw1NxKwWM+7eUH/lU8pOMm5hHcoops=
github.com/go-co-op/gocron/v2 v2.16.2 h1:r08P663ikXiulLT9XaabkLypL/W9MoCIbqgQoAutyX4=
github.com/go-co-op/gocron/v2 v2.16.2/go.mod h1:4YTLGCCAH75A5RlQ6q+h+VacO7CgjkgP0EJ+BEOXRSI=
github.com/go-logr/logr v1.4.2 h1:6pFjapn8bFcIbiKo3XT4j/BhANplGihG6tvd+8rYgrY=

View File

@@ -5,7 +5,7 @@ export function useAPI() {
const authStore = useAuthStore()
return new DefaultApi(
new Configuration({
basePath: 'http://localhost:8090/api',
basePath: '/api',
headers: {
'Content-Type': 'application/json',
Accept: 'application/json',