refactor(project): path rename
Build and Push Docker image / build-and-push (push) Failing after 2m3s
Details
Build and Push Docker image / build-and-push (push) Failing after 2m3s
Details
Renamed ../StuVe-IT/.. to ../stuve-it/..
This commit is contained in:
parent
d51a92f6e1
commit
fc43a288e9
|
@ -26,7 +26,7 @@ jobs:
|
|||
context: .
|
||||
file: ./Dockerfile
|
||||
push: true
|
||||
tags: git.stuve.uni-ulm.de/StuVe-IT/stuve-it-backend:latest
|
||||
tags: git.stuve.uni-ulm.de/stuve-it/stuve-it-backend:latest
|
||||
|
||||
#- name: Trigger webhook
|
||||
# run: curl -X POST ${{ secrets.WEBHOOK_URL }}
|
|
@ -54,7 +54,7 @@ Funktionen für die einzelnen Tabellen und User erlaubt sind.
|
|||
## Entwickeln
|
||||
|
||||
```bash
|
||||
git clone https://git.stuve.uni-ulm.de/StuVe-IT/stuve-it-backend.git
|
||||
git clone https://git.stuve.uni-ulm.de/stuve-it/stuve-it-backend.git
|
||||
cd stuve-it-backend
|
||||
go run main/main.go serve # --debug=0 for no debug output
|
||||
```
|
||||
|
@ -107,7 +107,7 @@ Funktionen `Success`, `Info` und `Error` an.
|
|||
```go
|
||||
package main
|
||||
|
||||
import "git.stuve.uni-ulm.de/StuVe-IT/stuve-it-backend/logger"
|
||||
import "git.stuve.uni-ulm.de/stuve-it/stuve-it-backend/logger"
|
||||
|
||||
func main() {
|
||||
logger.LogInfoF("Info Message")
|
||||
|
|
2
go.mod
2
go.mod
|
@ -1,4 +1,4 @@
|
|||
module git.stuve.uni-ulm.de/StuVe-IT/stuve-it-backend
|
||||
module git.stuve.uni-ulm.de/stuve-it/stuve-it-backend
|
||||
|
||||
go 1.21
|
||||
|
||||
|
|
|
@ -2,8 +2,8 @@ package ldapLogin
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
"git.stuve.uni-ulm.de/StuVe-IT/stuve-it-backend/ldapSync"
|
||||
"git.stuve.uni-ulm.de/StuVe-IT/stuve-it-backend/logger"
|
||||
"git.stuve.uni-ulm.de/stuve-it/stuve-it-backend/ldapSync"
|
||||
"git.stuve.uni-ulm.de/stuve-it/stuve-it-backend/logger"
|
||||
"github.com/go-ldap/ldap/v3"
|
||||
"github.com/labstack/echo/v5"
|
||||
"github.com/pocketbase/pocketbase"
|
||||
|
|
|
@ -6,7 +6,7 @@ this file contains functions to sync ldap users and groups to the database
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
"git.stuve.uni-ulm.de/StuVe-IT/stuve-it-backend/logger"
|
||||
"git.stuve.uni-ulm.de/stuve-it/stuve-it-backend/logger"
|
||||
"github.com/pocketbase/dbx"
|
||||
"github.com/pocketbase/pocketbase"
|
||||
"github.com/pocketbase/pocketbase/forms"
|
||||
|
|
|
@ -3,7 +3,7 @@ package ldapSync
|
|||
import (
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"git.stuve.uni-ulm.de/StuVe-IT/stuve-it-backend/logger"
|
||||
"git.stuve.uni-ulm.de/stuve-it/stuve-it-backend/logger"
|
||||
"github.com/go-ldap/ldap/v3"
|
||||
"github.com/google/uuid"
|
||||
"github.com/pocketbase/dbx"
|
||||
|
|
|
@ -5,7 +5,7 @@ package ldapSync
|
|||
|
||||
import (
|
||||
"fmt"
|
||||
"git.stuve.uni-ulm.de/StuVe-IT/stuve-it-backend/logger"
|
||||
"git.stuve.uni-ulm.de/stuve-it/stuve-it-backend/logger"
|
||||
"github.com/pocketbase/pocketbase"
|
||||
"github.com/pocketbase/pocketbase/tools/cron"
|
||||
"os"
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"git.stuve.uni-ulm.de/StuVe-IT/stuve-it-backend/ldapLogin"
|
||||
"git.stuve.uni-ulm.de/StuVe-IT/stuve-it-backend/ldapSync"
|
||||
"git.stuve.uni-ulm.de/StuVe-IT/stuve-it-backend/logger"
|
||||
"git.stuve.uni-ulm.de/StuVe-IT/stuve-it-backend/qrApi"
|
||||
"git.stuve.uni-ulm.de/stuve-it/stuve-it-backend/ldapLogin"
|
||||
"git.stuve.uni-ulm.de/stuve-it/stuve-it-backend/ldapSync"
|
||||
"git.stuve.uni-ulm.de/stuve-it/stuve-it-backend/logger"
|
||||
"git.stuve.uni-ulm.de/stuve-it/stuve-it-backend/qrApi"
|
||||
"github.com/joho/godotenv"
|
||||
"github.com/pocketbase/pocketbase"
|
||||
"github.com/pocketbase/pocketbase/core"
|
||||
|
|
|
@ -2,8 +2,8 @@ package qrApi
|
|||
|
||||
import (
|
||||
"bytes"
|
||||
goqr "git.stuve.uni-ulm.de/StuVe-IT/stuve-it-backend/go-qr"
|
||||
"git.stuve.uni-ulm.de/StuVe-IT/stuve-it-backend/logger"
|
||||
goqr "git.stuve.uni-ulm.de/stuve-it/stuve-it-backend/go-qr"
|
||||
"git.stuve.uni-ulm.de/stuve-it/stuve-it-backend/logger"
|
||||
"github.com/labstack/echo/v5"
|
||||
"github.com/pocketbase/pocketbase"
|
||||
"github.com/pocketbase/pocketbase/apis"
|
||||
|
|
Loading…
Reference in New Issue