diff --git a/.gitignore b/.gitignore index 6905a16..3a0ead1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,12 @@ -.DS_Store +# config file - copy config.json.example +src/config.json + +# Build directory +dist/ + +# Node packages node_modules/ npm-debug.log -dist/ + +# MacOS trash +.DS_Store diff --git a/src/config.json.example b/src/config.json.example new file mode 100644 index 0000000..c11c318 --- /dev/null +++ b/src/config.json.example @@ -0,0 +1,4 @@ +{ + "SEASONED_URL": "http://localhost:31459/api", + "ELASTIC_URL": "http://localhost:9200" +}