diff --git a/.gitignore b/.gitignore index 5345e13d05f375b9193f8817e5445883aeb991fe..5edcce1d2e51df7ecaf2e476219a032c71f323ce 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ node_modules auth.md +config.json diff --git a/config-sample.json b/config-sample.json new file mode 100644 index 0000000000000000000000000000000000000000..f766bcdd2300750c4386b1820deb8d7693f87f00 --- /dev/null +++ b/config-sample.json @@ -0,0 +1,4 @@ +{ + "apikey": "", + "port": 9001 +} diff --git a/package.json b/package.json index 1a2da9775c50b962b33941b8befeba89fa81d830..f9cfec984b982f9bd1f6975c8678c708685d962a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { - "name": "slack-weather", + "name": "weather-on-the-slack", "version": "1.0.0", - "description": "_A Slackbot that gets weather conditions", + "description": "A Slackbot that gets weather conditions and forecast", "main": "index.js", "dependencies": { "body-parser": "^1.14.2", @@ -11,16 +11,14 @@ }, "devDependencies": {}, "scripts": { + "start": "node index.js", "test": "echo \"Error: no test specified\" && exit 1" }, "repository": { "type": "git", - "url": "git+https://github.com/ryadav88/slack-weather.git" + "url": "git+https://git.ethitter.com/open-source/weather-on-the-slash.git" }, "author": "", "license": "MIT", - "bugs": { - "url": "https://github.com/ryadav88/slack-weather/issues" - }, - "homepage": "https://github.com/ryadav88/slack-weather#readme" + "homepage": "https://git.ethitter.com/open-source/weather-on-the-slash/#readme" }