From 514ff2acff2ba9ad9f809e22fc8ed5a986410e5d Mon Sep 17 00:00:00 2001 From: Clint Adams Date: Fri, 19 Apr 2013 17:57:46 -0400 Subject: Initial stab. --- config/favicon.ico | Bin 0 -> 1342 bytes config/hledger.yml | 15 +++++++++++++++ config/robots.txt | 1 + config/routes | 8 ++++++++ config/settings.yml | 19 +++++++++++++++++++ 5 files changed, 43 insertions(+) create mode 100644 config/favicon.ico create mode 100644 config/hledger.yml create mode 100644 config/robots.txt create mode 100644 config/routes create mode 100644 config/settings.yml (limited to 'config') diff --git a/config/favicon.ico b/config/favicon.ico new file mode 100644 index 0000000..9dd5f35 Binary files /dev/null and b/config/favicon.ico differ diff --git a/config/hledger.yml b/config/hledger.yml new file mode 100644 index 0000000..cd3ddae --- /dev/null +++ b/config/hledger.yml @@ -0,0 +1,15 @@ +Default: &defaults + ledgers: + test: "/tmp/test.journal" + +Development: + <<: *defaults + +Testing: + <<: *defaults + +Staging: + <<: *defaults + +Production: + <<: *defaults diff --git a/config/robots.txt b/config/robots.txt new file mode 100644 index 0000000..7d329b1 --- /dev/null +++ b/config/robots.txt @@ -0,0 +1 @@ +User-agent: * diff --git a/config/routes b/config/routes new file mode 100644 index 0000000..5ec7492 --- /dev/null +++ b/config/routes @@ -0,0 +1,8 @@ +/static StaticR Static getStatic +/auth AuthR Auth getAuth + +/favicon.ico FaviconR GET +/robots.txt RobotsR GET + +/ HomeR GET +/register/#Ledger RegisterR GET diff --git a/config/settings.yml b/config/settings.yml new file mode 100644 index 0000000..4266711 --- /dev/null +++ b/config/settings.yml @@ -0,0 +1,19 @@ +Default: &defaults + host: "*4" # any IPv4 host + port: 3000 + approot: "http://localhost:3000" + copyright: Copyright (C) 2013 Clint Adams + #analytics: UA-YOURCODE + +Development: + <<: *defaults + +Testing: + <<: *defaults + +Staging: + <<: *defaults + +Production: + #approot: "http://www.example.com" + <<: *defaults -- cgit v1.2.3