This tool allows you to delete your extra Slack files from your team account.
It's built with Express and Passport on the server side, and React and Redux on the client side.
To contribute, fork the repo and then complete the following steps to get up and running.
-
Sign up for the Slack Web API at https://api.slack.com/web and get yourself a Client ID and a Client Secret. In the 'Redirect URI(s)' field, put
http://localhost:3000/auth/slack/callback
-
Create a
.env
file in the root of the project and add the following detailsclientID_DEV=CLIENTIDFROMTHESLACKAPI clientSecret_DEV=CLIENTSECRETFROMTHESLACKAPI SECRET_DEV=supersupersecretpartytime CALLBACK_DEV=http://localhost:3000/auth/slack/callback
-
Install dependencies
npm install
-
In two separate terminals, run the following commands respectively
nodemon server.js gulp
or...in one terminal window, run
npm start