Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
| # convert yaml to json | |
| # pip3 install pyyaml | |
| # http://pyyaml.org/wiki/PyYAMLDocumentation | |
| # py3 yaml2json.py < ~/code/manpow/homeland/heartland/puphpet/config.yaml | |
| # gist https://gist.github.com/noahcoad/51934724e0896184a2340217b383af73 | |
| import yaml, json, sys | |
| sys.stdout.write(json.dumps(yaml.load(sys.stdin), sort_keys=True, indent=2)) |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | 🎉 :tada: |
| Version tag | 🔖 :bookmark: |
| New feature | ✨ :sparkles: |
| Bugfix | 🐛 :bug: |
by Jonathan Rochkind, http://bibwild.wordpress.com
Capistrano automates pushing out a new version of your application to a deployment location.
I've been writing and deploying Rails apps for a while, but I avoided using Capistrano until recently. I've got a pretty simple one-host deployment, and even though everyone said Capistrano was great, every time I tried to get started I just got snowed under not being able to figure out exactly what I wanted to do, and figured I wasn't having that much trouble doing it "manually".