25 Oct 2016
I have created new jincod/dotnetcore-buildpack
heroku buildpacks:set https://github.com/jincod/dotnetcore-buildpack
AspNet5 Demo App
git clone https://github.com/jincod/AspNet5DemoApp.git
git push origin master
Deploy to Heroku
Click the button below to set up this sample app on Heroku:
05 Sep 2016
Update spreadsheet values using Google Sheets API V4 and google-api-nodejs-client
18 Jun 2016
Appveyor.yml
environment:
SURGE_LOGIN: login
SURGE_TOKEN:
secure: secure-string
install:
- ps: Install-Product node 0
- npm install -g npm
- npm install
build: off
build_script:
- npm run build
deploy_script:
- npm run deploy
Scripts section in package.json
"scripts": {
"build": "webpack --config webpack.config.js",
"deploy": "surge --project ./dist --domain domain.surge.sh"
}
25 Mar 2016
My previous post about running NUnit2 tests from powershell. Bellow script for running NUnit3 tests.