This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [{"id":79,"date":"2018-12-20T05:15:23","date_gmt":"2018-12-20T05:15:23","guid":{"rendered":"http:\/\/radios.masnicaragua.com\/wp-content\/uploads\/2018\/12\/4.jpg"},"modified":"2018-12-20T05:17:05","modified_gmt":"2018-12-20T05:17:05","slug":"4","status":"inherit","type":"attachment","link":"http:\/\/radios.masnicaragua.com\/levantare-el-show\/attachment\/4\/","title":{"rendered":"4"},"author":1,"comment_status":"open","ping_status":"closed","template":"","meta":[],"description":{"rendered":"<p class=\"attachment\"><a href='http:\/\/radios.masnicaragua.com\/wp-content\/uploads\/2018\/12\/4.jpg'><img width=\"225\" height=\"300\" src=\"http:\/\/radios.masnicaragua.com\/wp-content\/uploads\/2018\/12\/4-225x300.jpg\" class=\"attachment-medium size-medium\" alt=\"\" srcset=\"http:\/\/radios.masnicaragua.com\/wp-content\/uploads\/2018\/12\/4-225x300.jpg 225w, http:\/\/radios.masnicaragua.com\/wp-content\/uploads\/2018\/12\/4.jpg 768w\" sizes=\"(max-width: 225px) 100vw, 225px\" \/><\/a><\/p>\n"},"caption":{"rendered |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl -n -X DELETE https://api.heroku.com/apps/[dyno name]/dynos -H "Authorization: Bearer [auth:token]" -H "Content-Type: application/json" -H "Accept: application/vnd.heroku+json; version=3" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| heroku auth:token |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| curl -n -X DELETE https://api.heroku.com/apps/gandalf-dev/dynos -H "Authorization: Bearer [auth:token]" -H "Content-Type: application/json" -H "Accept: application/vnd.heroku+json; version=3" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| image: ruby:2.2 | |
| before_script: | |
| - apt-get install -y curl | |
| - curl -sL https://deb.nodesource.com/setup_10.x | bash - | |
| - apt-get install -y nodejs | |
| - node -v | |
| - ruby -v | |
| - npm -v |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| https://faq.whatsapp.com/general/26000226 | |
| Repositorio: https://github.com/WhatsApp/stickers |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cache: | |
| paths: | |
| - node_modules/ | |
| test: | |
| image: node:10-jessie | |
| stage: test | |
| script: | |
| - yarn install | |
| - yarn run test |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Rake::Task["assets:precompile"].clear | |
| namespace :assets do | |
| task 'precompile' do | |
| puts "Not pre-compiling assets..." | |
| end | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| devServer: { | |
| allowedHosts: [ | |
| '.lvh.me', | |
| ], | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const functions = require('firebase-functions'); | |
| const gcs = require('@google-cloud/storage')(); | |
| const sharp = require('sharp') | |
| const _ = require('lodash'); | |
| const path = require('path'); | |
| const os = require('os'); | |
| exports.generateThumbnail = functions.storage.object('uploads/{imageId}').onFinalize(event => { | |
| const object = event.data; // The Storage object. |