diff --git a/.gitignore b/.gitignore index b454bff..b1e2a80 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -gopub +lenore diff --git a/commands/app.go b/commands/app.go index 8e13b5e..5dcc552 100644 --- a/commands/app.go +++ b/commands/app.go @@ -1,7 +1,7 @@ package commands import ( - "codeberg.org/danjones000/gopub/config" + "codeberg.org/danjones000/lenore/config" "github.com/gofiber/fiber/v2" "github.com/spf13/cobra" "log" @@ -33,7 +33,7 @@ func app(cmd *cobra.Command, args []string) { var AppCmd = &cobra.Command{ Use: "app", - Short: "Run the gopub webapp", + Short: "Run the lenore webapp", Long: `This is the main command. This will start the application, and keep it running. You may want to run this from something like supervisor or systemd`, Run: app, diff --git a/commands/root.go b/commands/root.go index 316c9e7..2bb4745 100644 --- a/commands/root.go +++ b/commands/root.go @@ -8,8 +8,8 @@ import ( ) var rootCmd = &cobra.Command{ - Use: "gopub", - Short: "gopub is a single-user ActivityPub instance", + Use: "lenore", + Short: "lenore is a single-user ActivityPub instance", Long: "...", } diff --git a/config/config.go b/config/config.go index deeb991..8d8ae43 100644 --- a/config/config.go +++ b/config/config.go @@ -66,7 +66,7 @@ func newConfig() Config { func init() { config = newConfig() - configPath := configdir.LocalConfig("gopub") + configPath := configdir.LocalConfig("lenore") if err := configdir.MakePath(configPath); err != nil { panic(err) } diff --git a/go.mod b/go.mod index 9e6b9dd..1ae9a43 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module codeberg.org/danjones000/gopub +module codeberg.org/danjones000/lenore go 1.19 diff --git a/main.go b/main.go index 4516183..dd58edd 100644 --- a/main.go +++ b/main.go @@ -1,7 +1,7 @@ package main import ( - "codeberg.org/danjones000/gopub/commands" + "codeberg.org/danjones000/lenore/commands" ) func main() {