mirror of
https://github.com/misenhower/splatoon2.ink.git
synced 2026-03-21 17:24:37 -05:00
60 lines
1.3 KiB
JavaScript
60 lines
1.3 KiB
JavaScript
require('dotenv').config();
|
|
|
|
module.exports = shipit => {
|
|
shipit.initConfig({
|
|
production: {
|
|
servers: process.env.SHIPIT_PRODUCTION_SERVER,
|
|
dir: process.env.SHIPIT_PRODUCTION_DIR,
|
|
},
|
|
staging: {
|
|
servers: process.env.SHIPIT_STAGING_SERVER,
|
|
dir: process.env.SHIPIT_STAGING_DIR,
|
|
},
|
|
});
|
|
|
|
const dockerApp = 'sudo docker-compose exec -T app ';
|
|
|
|
function options() {
|
|
return { cwd: shipit.config.dir };
|
|
}
|
|
|
|
// Git
|
|
|
|
shipit.blTask('pull', () => {
|
|
return shipit.remote('git pull', options());
|
|
});
|
|
|
|
// JS
|
|
|
|
shipit.blTask('install-js-deps', () => {
|
|
return shipit.remote(dockerApp + 'yarn install', options());
|
|
});
|
|
|
|
shipit.blTask('build-js', ['install-js-deps'], () => {
|
|
return shipit.remote(dockerApp + 'yarn run build', options());
|
|
});
|
|
|
|
shipit.blTask('deploy-js', [
|
|
'pull',
|
|
'build-js',
|
|
]);
|
|
|
|
// App
|
|
|
|
shipit.blTask('restart-app', () => {
|
|
return shipit.remote('sudo docker-compose restart app', options());
|
|
});
|
|
|
|
shipit.blTask('splatnet', () => {
|
|
return shipit.remote(dockerApp + 'yarn splatnet', options());
|
|
});
|
|
|
|
// Combination Tasks
|
|
|
|
shipit.blTask('deploy', [
|
|
'pull',
|
|
'deploy-js',
|
|
'restart-app',
|
|
]);
|
|
}
|