diff --git a/README.md b/README.md index b9ca5f8..1ae76ba 100644 --- a/README.md +++ b/README.md @@ -1,3 +1 @@ -[![Build Status](https://travis-ci.org/agersant/polaris.svg?branch=master)](https://travis-ci.org/agersant/polaris) - -# Polaris \ No newline at end of file +# polaris \ No newline at end of file diff --git a/src/main.rs b/src/main.rs index 4857a8a..75d9c24 100644 --- a/src/main.rs +++ b/src/main.rs @@ -47,7 +47,7 @@ fn main() { let mut mount = Mount::new(); 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(); }