Skip to content

Commit 63cb13d

Browse files
authored
feat: Add monorepo support (#159)
* feat: Add monorepo support Several modifications have been made across files to enable support for monorepos. This includes changes to the app service and initialization command, and the introduction of prompts to gather user input for monorepo setup. * adding ptr * deliting unused import * feat: add functions for app and project initialization - Add new file cmd/initapp/initapp.go for initializing a new application. - Add function for getting the app name - Add function for creating and pushing an empty environment file. - Add function for generating default AppId. - Add function for App initialization summary. - Add function to check the validity of the directory. - Update existing file cmd/initproject/initproject.go - Add function for getting the project name. * fix typo * working * chore: siempler prompt for apps * asking user for app name * restoring
1 parent 9bb7a5b commit 63cb13d

File tree

10 files changed

+902
-349
lines changed

10 files changed

+902
-349
lines changed

cmd/env/push/push.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ func RunPush(args []string, secretKeyId int64) error {
9191
return err
9292
}
9393
for _, envName := range envsToPush {
94-
e, err := env.GetLocalEncryptedEnv(envName, manifest)
94+
e, err := env.GetLocalEncryptedEnv(envName, nil, manifest)
9595
if err != nil {
9696
printer.Error(nil, err)
9797
continue

0 commit comments

Comments
 (0)