/rest/greenhopper/1.0/rapidview
The full web URL may be constructed by setting the rapidView query paramater to the /secure/RapidBoard.jspa endpoint. For example /secure/RapidBoard.jspa?rapidView=69.
| # git project init | |
| # What would you like to use as a branch prefix? [FOO] | |
| # What deployment remotes would you like to define? [test prod stage] | |
| # git project topic | |
| # git project deploy |
| #!/bin/bash | |
| openssl req -new -newkey rsa:2048 -nodes -keyout $1.key -out $1.csr | |
| openssl x509 -req -days 366 -in $1.csr -signkey $1.key -out $1.crt |
| <?php | |
| function get_excerpt($input, $length = 250) | |
| { | |
| return current(explode("\n", wordwrap($input, $length))); | |
| } |
| <?php // via http://stackoverflow.com/questions/11657835 | |
| $onlyIds = array_map('current', $results); |
| set_acl_permissions: |
| curl wordpress.org/latest.tar.gz |\ | |
| tar -xvz --strip-components=1 -- |
| #!/bin/bash | |
| ## | |
| # Run from within a git directory | |
| ## | |
| GIT_WORK_TREE=/var/www/example.com/prod git checkout -f |
| #!/bin/bash | |
| ## | |
| # Devify your Symfony install. | |
| # | |
| # Clears the cache, deploys symlinks of the public assets. | |
| ## | |
| php app/console cache:clear &&\ | |
| php app/console assets:install --symlink |