From df0b9f5b4656ec636fd2419a65e1debc5ebca379 Mon Sep 17 00:00:00 2001 From: Rikard Bartholf Date: Mon, 15 Feb 2016 11:18:39 +0100 Subject: [PATCH] Add example configuration file --- .configuration.sh~ | 7 +++++++ .gitignore | 1 + 2 files changed, 8 insertions(+) create mode 100644 .configuration.sh~ create mode 100644 .gitignore diff --git a/.configuration.sh~ b/.configuration.sh~ new file mode 100644 index 0000000..6275570 --- /dev/null +++ b/.configuration.sh~ @@ -0,0 +1,7 @@ +#!/bin/bash +# localhost +export PSQL_OPTS="-h localhost -U root" + +# Prod +export PSQL_OPTS="-h PRODUCTION.SERVER.URL -U root" +export DB_NAME=DATABASE_NAME diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..625ee42 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.configuration.sh