capistrano
Here are 202 public repositories matching this topic...
hi there,
Just installed latest versions of shipit packages and here's something new:
Running 'deploy:fetch' task...
Create workspace...
Workspace created: "/var/folders/s0/scv46d414cd28hyzsd5_pcrw0000gn/T/tmp-72206PXTF2WKB77Ro"
Initialize local repository in "/var/folders/s0/scv46d414cd28hyzsd5_pcrw0000gn/T/tmp-72206PXTF2WKB77Ro"
Running "git init" on local.
@ Initialized empty Gi
-
Updated
Jun 30, 2020 - YAML
-
Updated
May 15, 2020 - Ruby
-
Updated
Jun 20, 2020 - Ruby
-
Updated
Feb 12, 2016 - Ruby
After running procsd create the services were not starting and I was receiving:
/bin/bash: -c: option requires an argument
It turns out that an argument is missing after the service file is generated. An exec should be added:
ExecStart=/bin/bash -lc 'exec $BINDIR/gunicorn app.wsgi --log-file=- -b 127.0.0.1:$PORT --log-level DEBUG'
It also the same in Foreman. procsd does no
-
Updated
Jun 9, 2018
Right now we only output some error text and return a 0 exit status. This is wrong and we should return a non-zero status code on exit when something goes bad.
-
Updated
Nov 9, 2019 - Ruby
-
Updated
Feb 25, 2018 - Ruby
themejuice / tj
A lot of the deployment config values are required, but can be given sane defaults. We should add default values to them so that the Juicefile isn't so long. The only thing that is really needed is the repository URL and the stages; pretty much everything else we can add a default value for.
-
Updated
Jan 21, 2016 - Python
README.md file may have normal lists like this
List item
List item 2
List item 3
Currently editorconfig removes all white space from markdown files also, so double space gets erased and non-bullet lists are broken in project documentation if edited via Sublime Text.
-
Updated
Jun 16, 2020 - Ruby
-
Updated
Oct 24, 2017 - Ruby
-
Updated
Sep 30, 2015 - Ruby
Currently any article on the news tab is published immediately, it would be a nice feature to allow the scheduling of news.
-
Updated
Jun 6, 2020 - JavaScript
-
Updated
Feb 8, 2018 - Ruby
-
Updated
Jun 9, 2018
Improve this page
Add a description, image, and links to the capistrano topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the capistrano topic, visit your repo's landing page and select "manage topics."
So it seems there is a variable
current_pathwhich points to wherever:deploy:to/currentsymlink points. So afterdeploy:symlink:releaseit points to the current release.Also there is a variable
release_paththat seems to point to the current release directory which is created bycreate_releasetask.What