Change domain name
This commit is contained in:
@@ -67,4 +67,3 @@ Deploy to Production:
|
|||||||
only:
|
only:
|
||||||
- master
|
- master
|
||||||
when: manual
|
when: manual
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
[](https://gitlab.thpeetz.de/tpeetz/kalorienmanager/commits/master)
|
[](https://gitlab.thpeetz.de/domain-thpeetz/kalorienmanager/commits/master)
|
||||||
[](https://gitlab.thpeetz.de/tpeetz/kalorienmanager/commits/master)
|
[](https://gitlab.thpeetz.de/domain-thpeetz/kalorienmanager/commits/master)
|
||||||
|
|
||||||
# Kalorien Manager
|
# Kalorien Manager
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"gitlab.ingenieurbuero-peetz.de/tpeetz/kalorienmanager.git/cmd"
|
"gitlab.thpeetz.de/domain-thpeetz/kalorienmanager.git/cmd"
|
||||||
)
|
)
|
||||||
|
|
||||||
var version = "undefined"
|
var version = "undefined"
|
||||||
|
|||||||
+2
-2
@@ -5,8 +5,8 @@ import (
|
|||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
"gitlab.ingenieurbuero-peetz.de/tpeetz/kalorienmanager.git/pkg/properties"
|
"gitlab.thpeetz.de/domain-thpeetz/kalorienmanager.git/pkg/properties"
|
||||||
"gitlab.ingenieurbuero-peetz.de/tpeetz/kalorienmanager.git/pkg/setup"
|
"gitlab.thpeetz.de/domain-thpeetz/kalorienmanager.git/pkg/setup"
|
||||||
|
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
|||||||
+1
-1
@@ -39,7 +39,7 @@ asciidoctor {
|
|||||||
'icons': 'font',
|
'icons': 'font',
|
||||||
'setanchors': '',
|
'setanchors': '',
|
||||||
'idseparator': '-',
|
'idseparator': '-',
|
||||||
'endpoint-url': 'http://www.ingenieurbuero-peetz.de',
|
'endpoint-url': 'http://www.thpeetz.de',
|
||||||
'imagesdir': './images',
|
'imagesdir': './images',
|
||||||
'docinfo1': ''
|
'docinfo1': ''
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
= Projektbeschreibung Kontor
|
= Projektbeschreibung Kontor
|
||||||
:author: Thomas Peetz
|
:author: Thomas Peetz
|
||||||
:email: <thomas.peetz@ingenieurbuero-peetz.de>
|
:email: <thomas.peetz@thpeetz.de>
|
||||||
:doctype: article
|
:doctype: article
|
||||||
:toc: left
|
:toc: left
|
||||||
:sectnums:
|
:sectnums:
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
module gitlab.ingenieurbuero-peetz.de/tpeetz/kalorienmanager.git
|
module gitlab.thpeetz.de/domain-thpeetz/kalorienmanager.git
|
||||||
|
|
||||||
require (
|
require (
|
||||||
cloud.google.com/go v0.44.3 // indirect
|
cloud.google.com/go v0.44.3 // indirect
|
||||||
|
|||||||
+2
-2
@@ -1,8 +1,8 @@
|
|||||||
package admin
|
package admin
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"gitlab.ingenieurbuero-peetz.de/tpeetz/kalorienmanager.git/pkg/auth"
|
"gitlab.thpeetz.de/domain-thpeetz/kalorienmanager.git/pkg/auth"
|
||||||
"gitlab.ingenieurbuero-peetz.de/tpeetz/kalorienmanager.git/pkg/util"
|
"gitlab.thpeetz.de/domain-thpeetz/kalorienmanager.git/pkg/util"
|
||||||
|
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
package admin
|
package admin
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"gitlab.ingenieurbuero-peetz.de/tpeetz/kalorienmanager.git/pkg/dao"
|
"gitlab.thpeetz.de/domain-thpeetz/kalorienmanager.git/pkg/dao"
|
||||||
"log"
|
"log"
|
||||||
|
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
package admin
|
package admin
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"gitlab.ingenieurbuero-peetz.de/tpeetz/kalorienmanager.git/pkg/dao"
|
"gitlab.thpeetz.de/domain-thpeetz/kalorienmanager.git/pkg/dao"
|
||||||
"reflect"
|
"reflect"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
|||||||
+4
-4
@@ -1,10 +1,10 @@
|
|||||||
package admin
|
package admin
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"gitlab.ingenieurbuero-peetz.de/tpeetz/kalorienmanager.git/pkg/auth"
|
"gitlab.thpeetz.de/domain-thpeetz/kalorienmanager.git/pkg/auth"
|
||||||
"gitlab.ingenieurbuero-peetz.de/tpeetz/kalorienmanager.git/pkg/dao"
|
"gitlab.thpeetz.de/domain-thpeetz/kalorienmanager.git/pkg/dao"
|
||||||
"gitlab.ingenieurbuero-peetz.de/tpeetz/kalorienmanager.git/pkg/properties"
|
"gitlab.thpeetz.de/domain-thpeetz/kalorienmanager.git/pkg/properties"
|
||||||
"gitlab.ingenieurbuero-peetz.de/tpeetz/kalorienmanager.git/pkg/util"
|
"gitlab.thpeetz.de/domain-thpeetz/kalorienmanager.git/pkg/util"
|
||||||
"net/http"
|
"net/http"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
package auth
|
package auth
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"gitlab.ingenieurbuero-peetz.de/tpeetz/kalorienmanager.git/pkg/dao"
|
"gitlab.thpeetz.de/domain-thpeetz/kalorienmanager.git/pkg/dao"
|
||||||
"gitlab.ingenieurbuero-peetz.de/tpeetz/kalorienmanager.git/pkg/properties"
|
"gitlab.thpeetz.de/domain-thpeetz/kalorienmanager.git/pkg/properties"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
package auth
|
package auth
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"gitlab.ingenieurbuero-peetz.de/tpeetz/kalorienmanager.git/pkg/dao"
|
"gitlab.thpeetz.de/domain-thpeetz/kalorienmanager.git/pkg/dao"
|
||||||
|
|
||||||
mgo "gopkg.in/mgo.v2"
|
mgo "gopkg.in/mgo.v2"
|
||||||
"gopkg.in/mgo.v2/bson"
|
"gopkg.in/mgo.v2/bson"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
package auth
|
package auth
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"gitlab.ingenieurbuero-peetz.de/tpeetz/kalorienmanager.git/pkg/dao"
|
"gitlab.thpeetz.de/domain-thpeetz/kalorienmanager.git/pkg/dao"
|
||||||
"reflect"
|
"reflect"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
|||||||
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
package setup
|
package setup
|
||||||
|
|
||||||
import (
|
import (
|
||||||
//"gitlab.ingenieurbuero-peetz.de/tpeetz/kalorienmanager.git/pkg/dao"
|
//"gitlab.thpeetz.de/domain-thpeetz/kalorienmanager.git/pkg/dao"
|
||||||
"log"
|
"log"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
+3
-3
@@ -1,9 +1,9 @@
|
|||||||
package setup
|
package setup
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"gitlab.ingenieurbuero-peetz.de/tpeetz/kalorienmanager.git/pkg/admin"
|
"gitlab.thpeetz.de/domain-thpeetz/kalorienmanager.git/pkg/admin"
|
||||||
"gitlab.ingenieurbuero-peetz.de/tpeetz/kalorienmanager.git/pkg/auth"
|
"gitlab.thpeetz.de/domain-thpeetz/kalorienmanager.git/pkg/auth"
|
||||||
"gitlab.ingenieurbuero-peetz.de/tpeetz/kalorienmanager.git/pkg/util"
|
"gitlab.thpeetz.de/domain-thpeetz/kalorienmanager.git/pkg/util"
|
||||||
|
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
package setup
|
package setup
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"gitlab.ingenieurbuero-peetz.de/tpeetz/kalorienmanager.git/pkg/auth"
|
"gitlab.thpeetz.de/domain-thpeetz/kalorienmanager.git/pkg/auth"
|
||||||
"gitlab.ingenieurbuero-peetz.de/tpeetz/kalorienmanager.git/pkg/dao"
|
"gitlab.thpeetz.de/domain-thpeetz/kalorienmanager.git/pkg/dao"
|
||||||
)
|
)
|
||||||
|
|
||||||
// CleanupSessions removes all sessions from database.
|
// CleanupSessions removes all sessions from database.
|
||||||
|
|||||||
+2
-2
@@ -1,8 +1,8 @@
|
|||||||
package setup
|
package setup
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"gitlab.ingenieurbuero-peetz.de/tpeetz/kalorienmanager.git/pkg/admin"
|
"gitlab.thpeetz.de/domain-thpeetz/kalorienmanager.git/pkg/admin"
|
||||||
"gitlab.ingenieurbuero-peetz.de/tpeetz/kalorienmanager.git/pkg/dao"
|
"gitlab.thpeetz.de/domain-thpeetz/kalorienmanager.git/pkg/dao"
|
||||||
|
|
||||||
"gopkg.in/mgo.v2/bson"
|
"gopkg.in/mgo.v2/bson"
|
||||||
)
|
)
|
||||||
|
|||||||
+2
-2
@@ -1,8 +1,8 @@
|
|||||||
package util
|
package util
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"gitlab.ingenieurbuero-peetz.de/tpeetz/kalorienmanager.git/pkg/auth"
|
"gitlab.thpeetz.de/domain-thpeetz/kalorienmanager.git/pkg/auth"
|
||||||
"gitlab.ingenieurbuero-peetz.de/tpeetz/kalorienmanager.git/pkg/properties"
|
"gitlab.thpeetz.de/domain-thpeetz/kalorienmanager.git/pkg/properties"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
sonar.projectName='Kalorien Manager'
|
sonar.projectName='Kalorien Manager'
|
||||||
|
sonar.qualitygate.wait=true
|
||||||
|
|
||||||
sonar.sources=.
|
sonar.sources=.
|
||||||
sonar.exclusions=**/*_test.go,docs/**
|
sonar.exclusions=**/*_test.go,docs/**
|
||||||
@@ -11,4 +12,3 @@ sonar.go.tests.reportPaths=test-report.out
|
|||||||
sonar.go.coverage.reportPaths=coverage.out
|
sonar.go.coverage.reportPaths=coverage.out
|
||||||
sonar.go.govet.reportPaths=govet-report.out
|
sonar.go.govet.reportPaths=govet-report.out
|
||||||
sonar.go.golint.reportPaths=golint-report.out
|
sonar.go.golint.reportPaths=golint-report.out
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user