From 6e99d20972bec95d3502ef7549d74f67b4cf0001 Mon Sep 17 00:00:00 2001 From: Guillermo Ramos Date: Sat, 27 Sep 2014 15:34:15 +0200 Subject: Initial commit (using Yesod's scaffolding) --- config/favicon.ico | Bin 0 -> 1342 bytes config/keter.yml | 8 ++++++++ config/robots.txt | 1 + config/routes | 6 ++++++ config/settings.yml | 19 +++++++++++++++++++ 5 files changed, 34 insertions(+) create mode 100644 config/favicon.ico create mode 100644 config/keter.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/keter.yml b/config/keter.yml new file mode 100644 index 0000000..1c7aaf3 --- /dev/null +++ b/config/keter.yml @@ -0,0 +1,8 @@ +exec: ../dist/build/turing-web/turing-web +args: + - production +host: <> + +# Use the following to automatically copy your bundle upon creation via `yesod +# keter`. Uses `scp` internally, so you can set it to a remote destination +# copy-to: user@host:/opt/keter/incoming 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..9b35815 --- /dev/null +++ b/config/routes @@ -0,0 +1,6 @@ +/static StaticR Static getStatic + +/favicon.ico FaviconR GET +/robots.txt RobotsR GET + +/ HomeR GET diff --git a/config/settings.yml b/config/settings.yml new file mode 100644 index 0000000..e083c48 --- /dev/null +++ b/config/settings.yml @@ -0,0 +1,19 @@ +Default: &defaults + host: "*4" # any IPv4 host + port: 3000 + approot: "http://localhost:3000" + copyright: © 2014 Guillermo Ramos + #analytics: UA-YOURCODE + +Development: + <<: *defaults + +Testing: + <<: *defaults + +Staging: + <<: *defaults + +Production: + #approot: "http://www.example.com" + <<: *defaults -- cgit v1.2.3