Skip to content

Instantly share code, notes, and snippets.

View nicolasFernandez's full-sized avatar
🏠
Home office

Nicolás Fernández nicolasFernandez

🏠
Home office
  • Santiago, Chile
  • 07:44 (UTC -03:00)
View GitHub Profile
@nicolasFernandez
nicolasFernandez / Appfile
Created May 3, 2017 14:29 — forked from mmazzarolo/Appfile
Simple Fastlane setup for React-Native (Android - iOS)
# iOS
app_identifier "com.myapp.app" # The bundle identifier of your app
apple_id "[email protected]" # Your Apple email address
team_id "1234ABCD" # Developer Portal Team ID
# Android
json_key_file "./google-play-api-secret.json" # Path to the json secret file - Follow https://github.com/fastlane/supply#setup to get one
package_name "com.myapp.app" # Your Android app package
@nicolasFernandez
nicolasFernandez / xcode8.js
Created October 13, 2016 00:01 — forked from dpogue/xcode8.js
Hook for Cordova iOS to support "developmentTeam" in buildConfig.json
"use strict";
var fs = require('fs');
var path = require('path');
module.exports = function(context) {
var encoding = 'utf-8';
var filepath = 'platforms/ios/cordova/build.xcconfig';
if (context.opts.cordova.platforms.indexOf('ios') === -1) return;
@nicolasFernandez
nicolasFernandez / README.md
Created July 19, 2016 02:00 — forked from oodavid/README.md
Backup MySQL to Amazon S3

Backup MySQL to Amazon S3

This is a simple way to backup your MySQL tables to Amazon S3 for a nightly backup - this is all to be done on your server :-)

Sister Document - Restore MySQL from Amazon S3 - read that next

1 - Install s3cmd

this is for Centos 5.6, see http://s3tools.org/repositories for other systems like ubuntu etc