├── .dockerignore ├── .gitignore ├── .travis.yml └── README.md /.dockerignore: -------------------------------------------------------------------------------- 1 | * 2 | !*.go 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danderson/pixiecore/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danderson/pixiecore/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danderson/pixiecore/HEAD/README.md --------------------------------------------------------------------------------