Skip to content

Instantly share code, notes, and snippets.

@maribel1995
maribel1995 / .travis.yml
Last active March 24, 2021 09:25
Deploying your app to Netlify with Travis using Webpack
language: node_js
node_js:
- 12
before_script:
- npm install
- npm run build
deploy:
provider: netlify
site: SITE_ID
edge: true
@rufoa
rufoa / Jenkinsfile
Created May 13, 2019 02:29
Jenkins [skip ci] implementation for multi-branch declarative pipeline
// change 'agent' lines as appropriate
pipeline {
agent none
stages {
stage('Run CI?') {
agent any
steps {
@azizvc
azizvc / backup-ec2.php
Last active March 15, 2018 12:18
Backup automático dos Volumes EC2 em PHP
<?php
/**
* Script de backup de Maquinas EC2
* @author Aziz Vicentini <aziz(at)php-br.net>
*/
define('RETENCAO_DIAS',7);