I want to create a Gruntfile
https://github.com/yeoman/generator-gruntfile
I'd like HTML5 Boilerplate
https://npmjs.org/package/generator-h5bp
I want to choose a flavour of Twitter Bootstrap (Normal, Sass, Less, Stylus)
I want to create a Gruntfile
https://github.com/yeoman/generator-gruntfile
I'd like HTML5 Boilerplate
https://npmjs.org/package/generator-h5bp
I want to choose a flavour of Twitter Bootstrap (Normal, Sass, Less, Stylus)
Yoyo. There are more articles/resources available than the below, but most appear to be older. To avoid the pain of upgrading finding things broken, I would try one of these. They're more recent.
var gulp = require('gulp'); | |
var bower = require('gulp-bower'); | |
var del = require('del'); | |
var project = require('./project.json'); | |
var lib = project.webroot + '/lib'; | |
gulp.task('default', ['bower:install'], function () { | |
return; | |
}); |
public class Program | |
{ | |
public static void Main(string[] args) | |
{ | |
Task.WaitAll(ExecuteAsync()); | |
Console.ReadLine(); | |
} | |
public static async Task ExecuteAsync() | |
{ |
RG="azx" | |
APPNAME=$RG-ghost | |
LOCATION="Central US" | |
#Recommend to keep these random, but if you need to change go for it | |
USER=admin_$RANDOM #set this to whatever you like but it's not something that should be easy | |
PASS=$(uuidgen) #Again - whatever you like but keep it safe! Better to make it random | |
SERVERNAME=server$RANDOM #this has to be unique across azure |