diff options
Diffstat (limited to 'cmd/xesite')
| -rw-r--r-- | cmd/xesite/main.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd/xesite/main.go b/cmd/xesite/main.go index 566678b..3316f3f 100644 --- a/cmd/xesite/main.go +++ b/cmd/xesite/main.go @@ -29,6 +29,7 @@ var ( gitBranch = flag.String("git-branch", "main", "Git branch to clone") gitRepo = flag.String("git-repo", "https://github.com/Xe/site", "Git repository to clone") githubSecret = flag.String("github-secret", "", "GitHub secret to use for webhooks") + miToken = flag.String("mi-token", "", "Token to use for the mi API") patreonSaasProxyURL = flag.String("patreon-saasproxy-url", "http://patreon-saasproxy/give-token", "URL to use for the patreon saasproxy") siteURL = flag.String("site-url", "https://xeiaso.net/", "URL to use for the site") tsnetHostname = flag.String("tailscale-hostname", "xesite", "Tailscale hostname to use") @@ -80,6 +81,7 @@ func main() { Development: *devel, PatreonClient: pc, DataDir: *dataDir, + MiToken: *miToken, }) if err != nil { log.Fatal(err) |
