Skip to content

Instantly share code, notes, and snippets.

View lorecrafting's full-sized avatar
📖
crafting lore!

lorecrafting lorecrafting

📖
crafting lore!
View GitHub Profile
@lorecrafting
lorecrafting / AWS Deployment.md
Last active February 15, 2019 08:41
Nginx Certbot Reverse Proxy Docker-Compose deployment

GETTING ON YOUR SERVER

ssh ubuntu@{ip}
Enter yes to prompt

CREATE USER

sudo adduser {username} and follow prompts

SET SSH KEY FOR NEW USER

@lorecrafting
lorecrafting / reduxsnapshot.js
Created November 29, 2018 18:18
Ex_venture redux store snapshot
{
roomInfo: {
zone: {
name: 'Bandit Hideout',
id: 1
},
y: 1,
x: 4,
shops: [],
players: [],
@lorecrafting
lorecrafting / elgordino-hasura.tf
Created May 12, 2019 19:33 — forked from coco98/elgordino-hasura.tf
Terraform spec for Hasura on Fargate and RDS
provider "aws" {
region = "${var.region}"
}
### VPC
# Fetch AZs in the current region
data "aws_availability_zones" "available" {}
resource "aws_vpc" "datastore" {
cidr_block = "172.17.0.0/16"