Skip to content

Instantly share code, notes, and snippets.

View NicolasRitouet's full-sized avatar

Nicolas Ritouet NicolasRitouet

View GitHub Profile
@NicolasRitouet
NicolasRitouet / README.md
Last active October 13, 2021 13:40 — forked from Potherca/README.md
BASH scripts to go through all the steps to make a (VPS) server more secure.
@NicolasRitouet
NicolasRitouet / minecraft.sh
Last active March 28, 2020 21:40
Single Command Minecraft Install
#!/bin/bash
# Minecraft (Spigot) server build script (written by Clay Freeman)
# License: http://creativecommons.org/licenses/by-sa/4.0/
# To use this script:
# wget -qO- https://gist.github.com/ClayFreeman/a4dae9b7d0fa2c6476eb/raw | sh
echo
@NicolasRitouet
NicolasRitouet / serverless-deploy-user.yaml
Created April 17, 2018 05:37 — forked from bsamuel-ui/serverless-deploy-user.yaml
Cloudformation template to deploy permissions for deploying a serverless project.
AWSTemplateFormatVersion: 2010-09-09
Description: >
Constructs a managed IAM policy to deploy a serverless project.
This template assumes the stack is being deployed in the current region and account.
You can then attach this policy to other IAM objects, such as users or roles.
Based on the work done in: https://github.com/serverless/serverless/issues/1439
@NicolasRitouet
NicolasRitouet / main.go
Created January 8, 2018 16:23 — forked from creack/main.go
A simple golang web server with basic logging, tracing, health check, graceful shutdown and zero dependencies
package main
import (
"context"
"fmt"
"log"
"net/http"
"os"
"os/signal"
"strconv"
@NicolasRitouet
NicolasRitouet / sdfcli.js
Created January 4, 2018 14:18
A node SDF cli wrapper
const spawn = require('cross-spawn');
const readline = require('readline').createInterface({
input: process.stdin,
output: process.stdout,
});
const getNetsuiteDomain = require('./rest.js');
/**
* @param {Config} config The configuration object
@NicolasRitouet
NicolasRitouet / deployd-1.0.0.md
Last active April 26, 2018 07:47
deployd 1.0.0 released

Dear deployd community,

The day has come, deployd is now stable enough to be released as a major version.

This is a big deal for all of us. It means:

  • we believe that deployd is stable enough to be used on production
  • we will communicate properly about breaking changes using Semantic Versioning

It took a while because we wanted to refactor the core module before releasing 1.0.0.
We extracted the dpd CLI, the dashboard and the clientlib from the core module (deployd).

---
AWSTemplateFormatVersion: '2010-09-09'
Description: 'Cloudformation stack to manage permission to deploy a serverless service'
Parameters:
ServiceName:
Description: Name of the Service you want to deploy
Type: String
ServiceName2:
Description: Name of the 2nd Service you want to deploy
@NicolasRitouet
NicolasRitouet / Makefile
Last active November 30, 2016 08:45 — forked from ianblenke/Makefile
A Makefile for creating, updating, watching, and deleting a CloudFormation VPC as per gists 9f4b8dd2b39c7d1c31ef and 0a6a6f26d1ecaa0d81eb
STACK:=myapp-dev
TEMPLATE:=cloudformation-template_vpc-iam.yml
PARAMETERS:=cloudformation-parameters_myapp-dev.yml
AWS_REGION:=eu-west-1
AWS_PROFILE:=aws-dev
all:
@which aws || pip install awscli
aws cloudformation create-stack --stack-name $(STACK) --template-body file://`pwd`/$(TEMPLATE) --parameters file://`pwd`/$(PARAMETERS) --capabilities CAPABILITY_IAM --profile $(AWS_PROFILE) --region $(AWS_REGION)
@NicolasRitouet
NicolasRitouet / index.js
Last active August 29, 2015 14:23
dpd-fileupload 0.0.14
"use strict";
/**
* Module dependencies
*/
var Resource = require('deployd/lib/resource'),
util = require('util'),
path = require('path'),
debug = require('debug')('dpd-fileupload'),
formidable = require('formidable'),
@NicolasRitouet
NicolasRitouet / release-deployd.md
Last active August 29, 2016 09:49
Release a new version of deployd
$ curl -O https://gist.githubusercontent.com/NicolasRitouet/33d9582c7ce2a39148b8/raw/0d00d0c1deb4c478dc2a942f1ae49cc7a6f7f1d2/changelog.js
$ git fetch origin # To get all tags
$ npm i qq
$ node changelog.js v0.8.10 (target release)
$ copy content to HISTORY.md
$ rm changelog.js
$ bump version in package.json
$ git ac "Bump to v0.8.10"
$ git push origin master