diff --git a/Hledger/Web/Options.hs b/Hledger/Web/Options.hs
--- a/Hledger/Web/Options.hs
+++ b/Hledger/Web/Options.hs
@@ -14,7 +14,8 @@
 import Hledger.Web.Settings
 
 progname = Hledger.Cli.progname ++ "-web"
-progversion = progversionstr progname
+-- progversion = progversionstr progname
+progversion = progname ++ "-" ++ "0.16.2"
 
 defbaseurlexample = (reverse $ drop 4 $ reverse $ defbaseurl defport) ++ "PORT"
 
diff --git a/hledger-web.cabal b/hledger-web.cabal
--- a/hledger-web.cabal
+++ b/hledger-web.cabal
@@ -1,5 +1,5 @@
 name:           hledger-web
-version: 0.16.1
+version: 0.16.2
 category:       Finance
 synopsis:       A web interface for the hledger accounting tool.
 description:    
@@ -22,6 +22,8 @@
 build-type:     Simple
 extra-tmp-files:
 extra-source-files:
+                models
+                routes
                 static/style.css
                 static/hledger.js
                 static/jquery.js
diff --git a/models b/models
new file mode 100644
--- /dev/null
+++ b/models
diff --git a/routes b/routes
new file mode 100644
--- /dev/null
+++ b/routes
@@ -0,0 +1,10 @@
+/static          StaticR         Static getStatic
+/favicon.ico     FaviconR        GET
+/robots.txt      RobotsR         GET
+/                RootR           GET
+/journal         JournalR        GET POST
+/journal/entries JournalEntriesR GET POST
+/journal/edit    JournalEditR    GET POST
+/register        RegisterR       GET POST
+/accounts        AccountsR       GET
+/api/accounts    AccountsJsonR   GET
