Added build status to readme

This commit is contained in:
Antoine Gersant 2016-09-14 23:45:59 -07:00
parent 7075e88449
commit 33817aa12f
2 changed files with 4 additions and 2 deletions

View file

@ -1 +1,3 @@
# polaris
[![Build Status](https://travis-ci.org/agersant/polaris.svg?branch=master)](https://travis-ci.org/agersant/polaris)
# Polaris

View file

@ -47,7 +47,7 @@ fn main() {
let mut mount = Mount::new();
mount.mount("/api/", api_chain);
mount.mount("/", Static::new(Path::new("web")));
mount.mount("/", Static::new(Path::new("../polaris-web")));
Iron::new(mount).http("localhost:3000").unwrap();
}