├── .gitignore ├── .travis.yml ├── Dockerfile ├── FileServer.hs ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snoyberg/file-server-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snoyberg/file-server-demo/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snoyberg/file-server-demo/HEAD/Dockerfile -------------------------------------------------------------------------------- /FileServer.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snoyberg/file-server-demo/HEAD/FileServer.hs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snoyberg/file-server-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snoyberg/file-server-demo/HEAD/README.md --------------------------------------------------------------------------------