Skip to content

Instantly share code, notes, and snippets.

View StefanKern's full-sized avatar

Stefan Kern StefanKern

View GitHub Profile
@StefanKern
StefanKern / deep-property-access.spec.ts
Last active August 14, 2019 13:43
Deep Property Access with Typescript
import {DeepPropertyAccess} from './deep-property-access';
interface Customer {
name: string;
company?: {
name: string;
address?: {
city: string;
}
};
@StefanKern
StefanKern / docker-compose.yml
Created February 12, 2018 23:32 — forked from slipo/docker-compose.yml
Super simple docker compose file giving you a private NEO network and neon-wallet-db ... see comments.
version: '3'
services:
neon-wallet-db:
container_name: "neon-wallet-db"
image: slipoh/neon-wallet-db:latest
environment:
- MONGOURL=mongodb:27017
- MONGOPASS=neo
- MONGOUSER=gas
- MONGOAPP=test