31 lines
485 B
Markdown
31 lines
485 B
Markdown
Clone Repository for:
|
|
|
|
```json
|
|
{
|
|
"name": "node-webhook-scripts",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"dependencies": {
|
|
"express": "^4.16.4"
|
|
},
|
|
"license": "SEE LICENCE IN LICENCE.md",
|
|
"author": {
|
|
"name": "Alexandre Pénombre",
|
|
"email": "alexandre.penombre@gmail.com"
|
|
}
|
|
}
|
|
```
|
|
|
|
hooks.js:
|
|
|
|
```javascript
|
|
module.exports = [
|
|
{
|
|
path: "/pull",
|
|
command: "git pull && yarn && pm2 restart 0",
|
|
cwd: "/home/ubuntu/io/",
|
|
method: "post",
|
|
},
|
|
];
|
|
```
|