From aef86392155efa03f5d889cfe4dcc53f5e49189b Mon Sep 17 00:00:00 2001 From: mjrode Date: Sun, 31 Mar 2019 17:02:38 -0500 Subject: [PATCH] Add back in local config --- .gitignore | 3 +-- config/local.js | 6 ++++++ 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 config/local.js diff --git a/.gitignore b/.gitignore index 346434d..45a7670 100644 --- a/.gitignore +++ b/.gitignore @@ -11,5 +11,4 @@ coverage .DS_Store .prettierignore .prettierrc.json -.sequelizerc -config/local.js \ No newline at end of file +.sequelizerc \ No newline at end of file diff --git a/config/local.js b/config/local.js new file mode 100644 index 0000000..7307b2d --- /dev/null +++ b/config/local.js @@ -0,0 +1,6 @@ +const localConfig = { + hostname: 'localhost', + port: 8080, +}; + +export default localConfig;