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
sudo apt-get update | |
sudo apt-get --assume-yes install apt-transport-https ca-certificates curl software-properties-common | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | |
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | |
sudo apt-get update | |
sudo apt-get --assume-yes install docker-ce | |
sudo docker run --rm hello-world | |
sudo usermod -aG docker $USER | |
sudo systemctl enable docker | |
sudo apt-mark hold docker-ce |
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
RESOURCE_GROUP="dev-docker-swarm-us-east" | |
VNET_NAME="vnet-docker-swarm" | |
SUBNET_NAME="subnet-docker-swarm" | |
NSG_NAME="nsg-docker-swarm" | |
LOAD_BALANCER_NAME="load-balancer-swarm-cluster" | |
OS_IMAGE="Canonical:UbuntuServer:17.04:17.04.201711210" | |
VM_SIZE="Standard_B2S" | |
ADMIN_USERNAME="wshaddix" | |
AVAILABILITY_SET_NAME="availability-set-swarm-nodes" |
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
public class RegistrationModule : NancyModule | |
{ | |
public RegistrationModule() : base("/registrations") | |
{ | |
Get["/"] = parameters => "List of registrations"; | |
Get["/{id}"] = parameters => "Details of a single registration"; | |
Post["/"] = parameters => "Create a new registration"; | |
Patch["/{id}"] = parameters => "Patch a single registration"; | |
Delete["/{id}"] = parameters => "Delete a single registration"; | |
} |
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
export class App { | |
configureRouter(config, router) { | |
config.title = 'My Application'; | |
config.map([ | |
{ route: ['', 'dashboard'], name: 'dashboard', moduleId: 'dashboard', nav: true, title: 'Dashboard', settings:{icon: 'fa-tachometer'} }, | |
{ route: 'payments', name: 'payments', moduleId: 'payments', nav: true, title: 'Payments', settings:{icon: 'fa-credit-card'} } | |
]); | |
this.router = router; | |
} |
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
<configuration> | |
<system.webServer> | |
<staticContent> | |
<mimeMap fileExtension="woff" mimeType="application/font-woff" /> | |
<mimeMap fileExtension="woff2" mimeType="application/font-woff" /> | |
</staticContent> | |
</system.webServer> | |
</configuration> |
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
node_modules | |
jspm_packages | |
bower_components | |
.idea | |
.DS_STORE | |
/dist | |
build/reports | |
coverage | |
!wwwroot/jspm_packages |
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
var gulp = require('gulp'); | |
var paths = require('../paths'); | |
gulp.task('package', ['build'], function(callback){ | |
return gulp.src(['dist/**/*', 'styles/**/*', 'jspm_packages/**/*', 'index.html', 'config.js', 'web.config'], {base: '.'}) | |
.pipe(gulp.dest(paths.wwwroot)); | |
}); |
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
var gulp = require('gulp'); | |
var paths = require('../paths'); | |
var del = require('del'); | |
var vinylPaths = require('vinyl-paths'); | |
// deletes all files in the output path | |
gulp.task('clean', function() { | |
return gulp.src([paths.output, paths.wwwroot]) | |
.pipe(vinylPaths(del)); | |
}); |
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
var appRoot = 'src/'; | |
var outputRoot = 'dist/'; | |
var exporSrvtRoot = 'export/'; | |
var wwwroot = 'wwwroot/'; | |
module.exports = { | |
wwwroot: wwwroot, | |
root: appRoot, | |
source: appRoot + '**/*.js', | |
html: appRoot + '**/*.html', |
NewerOlder