summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/favicon.icobin0 -> 1342 bytes
-rw-r--r--config/hledger.yml15
-rw-r--r--config/robots.txt1
-rw-r--r--config/routes8
-rw-r--r--config/settings.yml19
5 files changed, 43 insertions, 0 deletions
diff --git a/config/favicon.ico b/config/favicon.ico
new file mode 100644
index 0000000..9dd5f35
--- /dev/null
+++ b/config/favicon.ico
Binary files 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