chore: rename Citadel to Taskcafe

This commit is contained in:
Jordan Knott
2020-08-06 20:50:35 -05:00
parent 7ffd0ff6b8
commit 5dbdc20b36
51 changed files with 948 additions and 1088 deletions

View File

@ -5,11 +5,11 @@ import (
"github.com/spf13/cobra"
)
const CitadelConfDirEnvName = "CITADEL_CONFIG_DIR"
const TaskcafeConfDirEnvName = "TASKCAFE_CONFIG_DIR"
const CitadelAppConf = "citadel"
const TaskcafeAppConf = "taskcafe"
const mainDescription = `citadel is an open soure project management
const mainDescription = `Taskcafé is an open soure project management
system written in Golang & React.`
var (
@ -28,7 +28,7 @@ var verbose bool
var noColor bool
var rootCmd = &cobra.Command{
Use: "citadel",
Use: "taskcafe",
Long: mainDescription,
Version: version,
}

View File

@ -9,8 +9,8 @@ import (
_ "github.com/golang-migrate/migrate/v4/source/file"
"github.com/golang-migrate/migrate/v4/source/httpfs"
"github.com/jmoiron/sqlx"
"github.com/jordanknott/project-citadel/internal/config"
"github.com/jordanknott/project-citadel/internal/migrations"
"github.com/jordanknott/taskcafe/internal/config"
"github.com/jordanknott/taskcafe/internal/migrations"
log "github.com/sirupsen/logrus"
)

View File

@ -7,8 +7,8 @@ import (
"time"
"github.com/jmoiron/sqlx"
"github.com/jordanknott/project-citadel/internal/config"
"github.com/jordanknott/project-citadel/internal/route"
"github.com/jordanknott/taskcafe/internal/config"
"github.com/jordanknott/taskcafe/internal/route"
log "github.com/sirupsen/logrus"
)