Skip to content

Commit

Permalink
fix app domain
Browse files Browse the repository at this point in the history
  • Loading branch information
pomdtr committed Dec 1, 2024
1 parent df42be3 commit 55cc48c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ func NewApp(appname string, rootDir string, domain string) (App, error) {
app := App{
Name: appname,
Dir: filepath.Join(rootDir, appname),
Domain: domain,
Domain: fmt.Sprintf("%s.%s", appname, domain),
URL: fmt.Sprintf("https://%s.%s/", appname, domain),
Env: make(map[string]string),
}
Expand Down

0 comments on commit 55cc48c

Please sign in to comment.