From 7d86ef39c16a4f7e86ce6b0c671ddaf1264f6107 Mon Sep 17 00:00:00 2001 From: flifloo Date: Mon, 8 Jun 2020 10:56:38 +0200 Subject: [PATCH] Init Express, Pug, Sass, Sequelize, Socket.io --- config/config_exemple.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 config/config_exemple.json diff --git a/config/config_exemple.json b/config/config_exemple.json new file mode 100644 index 0000000..31f54b2 --- /dev/null +++ b/config/config_exemple.json @@ -0,0 +1,26 @@ +{ + "development": { + "username": "root", + "password": null, + "database": "database_test", + "host": "127.0.0.1", + "dialect": "postgres", + "operatorsAliases": false + }, + "test": { + "username": "root", + "password": null, + "database": "database_test", + "host": "127.0.0.1", + "dialect": "postgres", + "operatorsAliases": false + }, + "production": { + "username": "root", + "password": null, + "database": "database_production", + "host": "127.0.0.1", + "dialect": "postgres", + "operatorsAliases": false + } +}