Skip to content

Commit

Permalink
Merge pull request #137 from hossted/pn
Browse files Browse the repository at this point in the history
Add Project Name
  • Loading branch information
AdheipSingh committed Sep 5, 2024
2 parents 1be4364 + a2655f8 commit 41884a8
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion hossted/service/compose/activate_compose.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,17 @@ func ActivateCompose(composeFilePath string, develMode bool) error {
return err
}

projectName, err := getProjectName()
if err != nil {
return err
}

fmt.Println("ProjectName: ", projectName)

osInfo := OsInfo{
OrgID: orgID,
Token: tr.AccessToken,
ProjectName: GetProjectName(composeFilePath),
ProjectName: projectName,
HosstedApiUrl: common.HOSSTED_API_URL,
MimirUsername: common.MIMIR_USERNAME,
MimirPassword: common.MIMIR_PASSWORD,
Expand Down

0 comments on commit 41884a8

Please sign in to comment.