Revert "Added build status to readme"

This reverts commit 33817aa12f.
This commit is contained in:
Antoine Gersant 2016-09-14 23:46:10 -07:00
parent 33817aa12f
commit d9d17929f8
2 changed files with 2 additions and 4 deletions

View file

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

View file

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