Add deployer configuration
This commit is contained in:
parent
6a2c62470d
commit
1fe93e74c2
@ -24,6 +24,7 @@
|
|||||||
"tightenco/collect": "^7.5"
|
"tightenco/collect": "^7.5"
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
|
"deployer/recipes": "^6.2"
|
||||||
},
|
},
|
||||||
"config": {
|
"config": {
|
||||||
"preferred-install": {
|
"preferred-install": {
|
||||||
|
62
composer.lock
generated
62
composer.lock
generated
@ -4,7 +4,7 @@
|
|||||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||||
"This file is @generated automatically"
|
"This file is @generated automatically"
|
||||||
],
|
],
|
||||||
"content-hash": "ff5ad5d6a23af043f032470a0f69507e",
|
"content-hash": "5928d7deef12813659a9247a706c3061",
|
||||||
"packages": [
|
"packages": [
|
||||||
{
|
{
|
||||||
"name": "doctrine/annotations",
|
"name": "doctrine/annotations",
|
||||||
@ -4646,7 +4646,65 @@
|
|||||||
"time": "2018-04-25T15:33:34+00:00"
|
"time": "2018-04-25T15:33:34+00:00"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"packages-dev": [],
|
"packages-dev": [
|
||||||
|
{
|
||||||
|
"name": "deployer/recipes",
|
||||||
|
"version": "6.2.2",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/deployphp/recipes.git",
|
||||||
|
"reference": "84b3229c518c094a950e1fe785b7b8f9598770fe"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://api.github.com/repos/deployphp/recipes/zipball/84b3229c518c094a950e1fe785b7b8f9598770fe",
|
||||||
|
"reference": "84b3229c518c094a950e1fe785b7b8f9598770fe",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"php": "~7.0"
|
||||||
|
},
|
||||||
|
"replace": {
|
||||||
|
"deployer/recipes": "self.version"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"deployer/deployer": "^6.3"
|
||||||
|
},
|
||||||
|
"type": "library",
|
||||||
|
"autoload": {
|
||||||
|
"files": [
|
||||||
|
"autoload.php"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"license": [
|
||||||
|
"MIT"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Anton Medvedev",
|
||||||
|
"email": "anton@medv.io"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "3rd party deployer recipes",
|
||||||
|
"homepage": "https://github.com/deployphp/recipes",
|
||||||
|
"keywords": [
|
||||||
|
"cachetool",
|
||||||
|
"cloudflare",
|
||||||
|
"deploy",
|
||||||
|
"deployer",
|
||||||
|
"deployment",
|
||||||
|
"hipchat",
|
||||||
|
"newrelic",
|
||||||
|
"rabbit",
|
||||||
|
"recipes",
|
||||||
|
"sentry",
|
||||||
|
"slack",
|
||||||
|
"yarn"
|
||||||
|
],
|
||||||
|
"time": "2019-06-27T06:47:18+00:00"
|
||||||
|
}
|
||||||
|
],
|
||||||
"aliases": [],
|
"aliases": [],
|
||||||
"minimum-stability": "stable",
|
"minimum-stability": "stable",
|
||||||
"stability-flags": [],
|
"stability-flags": [],
|
||||||
|
30
deploy.php
30
deploy.php
@ -2,6 +2,8 @@
|
|||||||
namespace Deployer;
|
namespace Deployer;
|
||||||
|
|
||||||
require 'recipe/symfony4.php';
|
require 'recipe/symfony4.php';
|
||||||
|
require './vendor/deployer/recipes/recipe/cachetool.php';
|
||||||
|
require './vendor/deployer/recipes/recipe/yarn.php';
|
||||||
|
|
||||||
// Project name
|
// Project name
|
||||||
set('application', 'keylighter.kadet.net');
|
set('application', 'keylighter.kadet.net');
|
||||||
@ -10,7 +12,9 @@ set('application', 'keylighter.kadet.net');
|
|||||||
set('repository', 'git@git.kadet.net:kadet.net/keylighter.git');
|
set('repository', 'git@git.kadet.net:kadet.net/keylighter.git');
|
||||||
|
|
||||||
// [Optional] Allocate tty for git clone. Default value is false.
|
// [Optional] Allocate tty for git clone. Default value is false.
|
||||||
set('git_tty', true);
|
set('git_tty', true);
|
||||||
|
set('keep_releases', 3);
|
||||||
|
set('default_stage', 'production');
|
||||||
|
|
||||||
// Shared files/dirs between deploys
|
// Shared files/dirs between deploys
|
||||||
add('shared_files', []);
|
add('shared_files', []);
|
||||||
@ -22,16 +26,32 @@ add('writable_dirs', []);
|
|||||||
// Hosts
|
// Hosts
|
||||||
host('kadet.net')
|
host('kadet.net')
|
||||||
->stage('production')
|
->stage('production')
|
||||||
->set('deploy_path', '~/www/{{application}}');
|
->set('deploy_path', '~/www/{{application}}')
|
||||||
|
;
|
||||||
|
|
||||||
|
localhost()
|
||||||
|
->roles('test', 'build')
|
||||||
|
->set('deploy_path', '/tmp/build/{{application}}')
|
||||||
|
->set('keep_releases', 1);
|
||||||
|
|
||||||
// Tasks
|
// Tasks
|
||||||
task('build', function () {
|
task('assets:build', function () {
|
||||||
run('cd {{release_path}} && make');
|
run('yarn install');
|
||||||
|
run('yarn build');
|
||||||
|
})->onRoles('build');
|
||||||
|
|
||||||
|
task('assets:upload', function () {
|
||||||
|
upload('public/build/', '{{release_path}}/public');
|
||||||
|
upload('public/img/', '{{release_path}}/public');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
task('assets', ['assets:build', 'assets:upload']);
|
||||||
|
|
||||||
// [Optional] if deploy fails automatically unlock.
|
// [Optional] if deploy fails automatically unlock.
|
||||||
after('deploy:failed', 'deploy:unlock');
|
after('deploy:failed', 'deploy:unlock');
|
||||||
|
after('deploy:symlink', 'cachetool:clear:opcache');
|
||||||
|
|
||||||
// Migrate database before symlink new release.
|
// Migrate database before symlink new release.
|
||||||
//before('deploy:symlink', 'database:migrate');
|
//before('deploy:symlink', 'database:migrate');
|
||||||
|
before('deploy:symlink', 'assets');
|
||||||
|
|
||||||
|
@ -1,4 +1,7 @@
|
|||||||
{
|
{
|
||||||
|
"deployer/recipes": {
|
||||||
|
"version": "6.2.2"
|
||||||
|
},
|
||||||
"doctrine/annotations": {
|
"doctrine/annotations": {
|
||||||
"version": "1.0",
|
"version": "1.0",
|
||||||
"recipe": {
|
"recipe": {
|
||||||
|
Loading…
Reference in New Issue
Block a user