diff --git a/Main.hs b/Main.hs
--- a/Main.hs
+++ b/Main.hs
@@ -4,8 +4,4 @@
 import Villefort.Definitions
 
 main :: IO ()
-main = villefort def {
-  port = 3000,
-  noCustom = True,
-  database = "/home/chris/.cabal/share/x86_64-linux-ghc-7.10.3/Villefort-0.1.1.14/data/todo.db"
-                     }
+main = villefort def 
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
 # Villefort
 Villefort is a time managment system written in Haskell.
 
-## Version 1.1.15
+## Version 1.2.1
 - generally cleaned up code base
 - made daily into the IO monad so it matches the weekly tasks
 
diff --git a/Villefort.cabal b/Villefort.cabal
--- a/Villefort.cabal
+++ b/Villefort.cabal
@@ -1,5 +1,5 @@
 name:                Villefort
-version:             0.1.1.15
+version:             0.1.2.1
 synopsis: Villefort is a task manager and time tracker written in haskell.
 description: Villefort is a browser based time tracker.
 homepage:            https://github.com/Chrisr850/Villefort#readme
diff --git a/src/Villefort/Server.hs b/src/Villefort/Server.hs
--- a/src/Villefort/Server.hs
+++ b/src/Villefort/Server.hs
@@ -167,7 +167,7 @@
     ["--recompile"] -> putStrLn "recompiling" >> recompile
     _ -> putStrLn "straight starting " >> do
       if noCustom conf
-        then launch conf
+        then launch conf >> putStrLn "overload"
         else checkCustomBuild >> launch conf
 
 recompile :: IO ()
