Skip to content

Instantly share code, notes, and snippets.

View fglaeser's full-sized avatar

Facundo Glaeser fglaeser

View GitHub Profile
@fglaeser
fglaeser / README-Template.md
Created October 24, 2018 19:44
README Template for repo.

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@fglaeser
fglaeser / new-proj.ps1
Last active October 2, 2019 13:36
Scafolding script for new platform project
<#
.SYNOPSIS
Scafolding script for new platform project.
.DESCRIPTION
The script will create a console or api project.
#>
Param(
[Parameter(Mandatory=$True,Position=1)]
[string]$Proj,
[switch]$Api = $False