hardcoded path removed
diff --git a/web_app/__init__.py b/web_app/__init__.py
index 45e6180..02aaebe 100644
--- a/web_app/__init__.py
+++ b/web_app/__init__.py
@@ -76,7 +76,7 @@
     tests = json.loads(request.data)
 
     if not hasattr(g, "storage"):
-        g.storage = create_storage("file:///home/gstepanov/rally-results-processor/test_results/sample.json", "", "")
+        g.storage = create_storage("file://" + os.path.dirname(__file__) + "/test_results/sample.json", "", "")
 
     for test in tests:
         g.storage.store(test)