https://developer.github.com/v3/issues/labels/ https://developer.github.com/v3/issues/events/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# [P4: nice to have] caddy + consul-template + docker-compose |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PACKAGE=$(shell basename `pwd`) # "" | |
VERSION=$(shell git describe --tags) # ignorable | |
OUTPUT_NAME=$(PACKAGE)-$(VERSION) | |
.PHONY: build_pex | |
build_pex: clean $(OUTPUT_NAME).pex | |
.PHONY: prepare_pex | |
prepare_pex: | |
pip install --upgrade pip wheel pex |
I hereby claim:
- I am minhoryang on github.
- I am minhoryang (https://keybase.io/minhoryang) on keybase.
- I have a public key ASDIfWUqi6SUdsCIvozcNp-mTNnhPMaPj553RJJ209keaQo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ffind() { find . -type f -exec grep -nHr --color "$1" {} \; ; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function dm () { | |
docker-machine "$@" $(docker-machine active) | |
} | |
function dm! () { | |
eval "$(dm env)" | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[0m[1m==> Creating development environment layers...[0m | |
[0m Otto uses layers to speed up building development environments. | |
Each layer only needs to be built once. We've detected that the | |
layers below aren't created yet. These will be built this time. | |
Future development envirionments will use the cached versions | |
to be much, much faster.[0m | |
[0m[1m==> Verifying created layer: consul[0m | |
[0m[1m==> Creating layer: python3.3[0m | |
Bringing machine 'default' up with 'virtualbox' provider... | |
==> default: Cloning VM... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import pytest | |
from alembic.command import upgrade | |
from alembic.config import Config | |
from project.factory import create_app | |
from project.database import db as _db | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ko"> | |
<head> | |
<!-- Required meta tags always come first --> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
<meta http-equiv="x-ua-compatible" content="ie=edge"> | |
<!-- Bootstrap CSS --> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.2/css/bootstrap.min.css" integrity="sha384-y3tfxAZXuh4HwSYylfB+J125MxIs6mR5FOHamPBG064zB+AFeWH94NdvaCBm8qnd" crossorigin="anonymous"> |