From 2cd03d15f8c8d8c29daef2efb4406825de8b0b12 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Tue, 31 May 2016 12:29:41 +0200 Subject: Added the `bin` directory and sorted out licensing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Everything is licensed under the MIT license, except what it's inside of the `bin` directory, which is licensed under the GPLv3+ license. Signed-off-by: Miquel Sabaté Solà --- bin/examples/database.json | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 bin/examples/database.json (limited to 'bin/examples') diff --git a/bin/examples/database.json b/bin/examples/database.json new file mode 100644 index 0000000..b58e56f --- /dev/null +++ b/bin/examples/database.json @@ -0,0 +1,27 @@ +{ + "production": { + "dbname": "productiondb", + "host": "localhost", + "user": "mssola", + "password": "1234" + }, + "development": { + "dbname": "devdb", + "host": "localhost", + "user": "mssola", + "password": "1234", + "sslmode": "disable" + }, + "staging": { + "dbname": "stagingdb", + "host": "localhost", + "user": "mssola", + "password": "1234" + }, + "test": { + "dbname": "testdb", + "host": "localhost", + "user": "mssola", + "password": "1234" + } +} -- cgit v1.2.3