Closed t-heu closed 3 years ago
@t-heu , I'm not sure that heroku supports deploying a subdirectory within a repository root. Since, deploy-with-git
pushes the full remote git ref to deploy to heroku, https://devcenter.heroku.com/articles/git#deploying-code, the entire repository will need to be pushed to the remote. Changing your directory within the repository/project will have no effect.
This is possible manually with git subtree push --prefix [SUBDIR_PATH] [REMOTE_NAME] main
; however, this is not supported by the CircleCI orb.
how can i enter the backend directory to commit there on heroku?