A list of all the region names and locations for Azure
You can recreate the list anytime using this command:
az account list-locations -o table
// Brandon Azad (@_bazad) | |
#include <assert.h> | |
#include <errno.h> | |
#include <mach/mach.h> | |
#include <stdbool.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <unistd.h> |
/* jshint node: true */ | |
const EmberApp = require('ember-cli/lib/broccoli/ember-app'); | |
const generateWhitelabelIndexes = require('./generate-whitelabel-indexes'); | |
module.exports = function(defaults) { | |
const app = new EmberApp(defaults, { | |
// ...all sorts of config | |
}); |
Disclaimer: The instructions are the collective efforts from a few places online. | |
Nothing here is my original. But I want to put them together in one place to save people from spending the same time as I did. | |
First off, bundle. | |
================== | |
1. cd to the project directory | |
2. Start the react-native packager if not started | |
3. Download the bundle to the asset folder: | |
curl "http://localhost:8081/index.android.bundle?platform=android" -o "android/app/src/main/assets/index.android.bundle" |