Right now, I have a pretty basic folder structure for my app:
| myapp
|--www
|--deploy
|--dploy.yaml
|--buildfile
When I run a build process, it builds into the deploy folder, which I have also set in .gitignore. I have added www to the exclude array in dploy.yaml.
With this setup, DPLOY will only want to upload the .rev file and nothing else. Ideally, I would like to keep the deploy directory ignored as it adds a lot of weight to the repo if tracked. Is there a prescribed strategy for this type of situation?
Right now, I have a pretty basic folder structure for my app:
When I run a build process, it builds into the
deployfolder, which I have also set in.gitignore. I have addedwwwto theexcludearray indploy.yaml.With this setup, DPLOY will only want to upload the
.revfile and nothing else. Ideally, I would like to keep thedeploydirectory ignored as it adds a lot of weight to the repo if tracked. Is there a prescribed strategy for this type of situation?