* deploy.php fixed
* bookmark installer fixed
This commit is contained in:
parent
dadd365ae8
commit
d64273c9e9
@ -21,7 +21,7 @@
|
|||||||
<body>
|
<body>
|
||||||
<b>Just Drag'n'Drop the button into your Bookmarks</b>
|
<b>Just Drag'n'Drop the button into your Bookmarks</b>
|
||||||
<div class="button">
|
<div class="button">
|
||||||
<a href="javascript:(function(){ var script = document.createElement("script"); script.src = "https://qoomon.github.io/Jira-Issue-Card-Printer/bookmarklet.js"; document.body.appendChild(script); document.body.removeChild(script);})();">CardPrinter</a>
|
<a href="javascript:(function(){ var script = document.createElement("script"); script.src = "http://vasgyuro.tsp/~edvidan/jira-card-printer/bookmarklet.js"; document.body.appendChild(script); document.body.removeChild(script);})();">CardPrinter</a>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
javascript:(function(){
|
javascript:(function(){
|
||||||
var head = document.getElementsByTagName("head")[0];
|
var head = document.getElementsByTagName("head")[0];
|
||||||
var scriptElement = document.createElement("script");
|
var scriptElement = document.createElement("script");
|
||||||
scriptElement.src = 'https://qoomon.github.io/Jira-Issue-Card-Printer/bookmarklet.js';
|
scriptElement.src = 'http://vasgyuro.tsp/~edvidan/jira-card-printer/bookmarklet.js';
|
||||||
head.appendChild(scriptElement);
|
head.appendChild(scriptElement);
|
||||||
head.removeChild(scriptElement);
|
head.removeChild(scriptElement);
|
||||||
})();
|
})();
|
||||||
|
|||||||
12
deploy.php
12
deploy.php
@ -2,10 +2,20 @@
|
|||||||
|
|
||||||
require 'recipe/common.php';
|
require 'recipe/common.php';
|
||||||
|
|
||||||
server('prod', 'host', 22)
|
server('prod', 'vasgyuro.tsp', 22)
|
||||||
->user('edvidan')
|
->user('edvidan')
|
||||||
->forwardAgent() // You can use identity key, ssh config, or username/password to auth on the server.
|
->forwardAgent() // You can use identity key, ssh config, or username/password to auth on the server.
|
||||||
->stage('production')
|
->stage('production')
|
||||||
->env('deploy_path', '/home/edvidan/applications/jira-card-printer'); // Define the base path to deploy your project to.
|
->env('deploy_path', '/home/edvidan/applications/jira-card-printer'); // Define the base path to deploy your project to.
|
||||||
|
|
||||||
set('repository', '/home/edvidan/git/jira-card-printer.git');
|
set('repository', '/home/edvidan/git/jira-card-printer.git');
|
||||||
|
env('branch', 'taurus-xft');
|
||||||
|
|
||||||
|
task('deploy', [
|
||||||
|
'deploy:prepare',
|
||||||
|
'deploy:release',
|
||||||
|
'deploy:update_code',
|
||||||
|
// 'deploy:vendors',
|
||||||
|
'deploy:symlink',
|
||||||
|
'cleanup',
|
||||||
|
]);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user