summaryrefslogtreecommitdiff
path: root/config/postgresql.yml
diff options
context:
space:
mode:
Diffstat (limited to 'config/postgresql.yml')
-rw-r--r--config/postgresql.yml24
1 files changed, 24 insertions, 0 deletions
diff --git a/config/postgresql.yml b/config/postgresql.yml
new file mode 100644
index 0000000..780b5b3
--- /dev/null
+++ b/config/postgresql.yml
@@ -0,0 +1,24 @@
+Default: &defaults
+ host: ""
+ port: 5432
+ user: ""
+ password: ""
+ database: pfifcontractors
+ poolsize: 10
+
+Development:
+ <<: *defaults
+
+Testing:
+ database: pfifcontractors_test
+ <<: *defaults
+
+Staging:
+ database: pfifcontractors_staging
+ poolsize: 100
+ <<: *defaults
+
+Production:
+ database: pfifcontractors_production
+ poolsize: 100
+ <<: *defaults