Error: '...repo' does not exist #3214
-
I am new to Deployer. I have the following (anonymized) deploy.yaml:
When running
I develop locally on my laptop, using git, but no remote repository (not using GitHub or other git-severs). What am I doing wrong? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Use rsync.php add on to Deployer. task('deploy:update_code', function () {
// Override original update_code
// Do NOTHING (to skip git task)
}); deploy:writeable is also unneeded in my environment so override this as well. |
Beta Was this translation helpful? Give feedback.
Use rsync.php add on to Deployer.
Override deploy:update_code:
deploy:writeable is also unneeded in my environment so override this as well.
Customise .env-handling (because it is specific to each environment).
Customise file rights (only folder public, index.php and .htaccess need to be readable by others and no files need to be writeable by others).
It would be nice if these two customisations where options in Deployer so you do not need to customise them yourself!