From a7d20dfe7d0859ae70853c1d40bd1389f171019e Mon Sep 17 00:00:00 2001 From: loicbersier Date: Sat, 26 Oct 2019 23:46:58 +0200 Subject: [PATCH] example config for sequelize --- config/config-example.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 config/config-example.json diff --git a/config/config-example.json b/config/config-example.json new file mode 100644 index 00000000..2488c845 --- /dev/null +++ b/config/config-example.json @@ -0,0 +1,18 @@ +{ + "development": { + "username": "root", + "password": "apassword", + "database": "hahayes", + "host": "127.0.0.1", + "dialect": "mysql", + "operatorsAliases": false + }, + "production": { + "username": "root", + "password": "apassword", + "database": "hahayes", + "host": "127.0.0.1", + "dialect": "mysql", + "operatorsAliases": false + } +} \ No newline at end of file