#CONTRIBUTING
Right the project is a mess but I have good README, unit tests and code coverage.
| #!/bin/sh | |
| # | |
| # Run ctags after a commit | |
| echo "" | |
| echo "Ctags running ===============================" | |
| echo "" | |
| ctags -R . |
| git config --global alias.last 'log -1 HEAD --stat' | |
| git config --global alias.s 'status -s' | |
| git config --global alias.scrub '!git reset --hard HEAD~10 && git pull' | |
| git config --global alias.ls-alias 'config --get-regexp \"^alias\\.\"' | |
| git config --global alias.ls-branch 'for-each-ref --sort=-committerdate refs/heads/ --format="%(committerdate:short) %(authorname) : %(refname:short) - %(contents:subject)"' | |
| git config --global alias.last 'log -1 HEAD --stat' | |
| git config --global alias.append 'commit --amend' |
| " Vim syntax file | |
| " Language: Soy Templates | |
| " Maintainer: Rodrigo Machado rcmachado@gmail.com | |
| " Last Change: Thu Apr 15 16:59:00 GMT 2010 | |
| " Filenames: *.soy | |
| " URL: http://gist.github.com/gists/367358/download | |
| " | |
| " Based on Smarty.vim | |
| " For version 5.x: Clear all syntax items |
| /** | |
| * The difference between these 2 purples | |
| */ | |
| body{ | |
| font-weight: bold; | |
| font-family: 'Comfortaa', cursive; | |
| font-size: 2em; | |
| background-color: #d3d3d3; | |
| } | |
| .container { |
| /** | |
| * The difference between these 2 purples | |
| */ | |
| body{ | |
| font-weight: bold; | |
| font-family: 'Comfortaa', cursive; | |
| font-size: 2em; | |
| background-color: #d3d3d3; | |
| } | |
| .container { |
| /** | |
| * The difference between these 2 purples | |
| */ | |
| body{ | |
| font-weight: bold; | |
| font-family: 'Comfortaa', cursive; | |
| font-size: 2em; | |
| background-color: #d3d3d3; | |
| } | |
| .container { |
#CONTRIBUTING
Right the project is a mess but I have good README, unit tests and code coverage.
| # Dockerfile for create a simple web server | |
| # | |
| # docker build -t pyweb . | |
| # docker run -it --rm -v $(pwd):/usr/web pyweb | |
| # | |
| # docker run -d -v $(pwd):/usr/web pyweb | |
| # docker logs NAME | |
| # | |
| # use the ip address produced by th 'ip a' output |