2017-09-07 20:48:51 +00:00
# Removeddit
2018-07-29 01:59:04 +00:00
[Removeddit ](https://removeddit.com ) is a site for viewing removed comments / threads from [Reddit ](https://www.reddit.com ).
Just go to any reddit thread and change the `reddit` in the URL to `removeddit` to see all removed comments.
2017-09-07 20:48:51 +00:00
2018-07-29 02:09:05 +00:00
This is a done by comparing the comments being stored in [Jason Baumgartners ](https://pushshift.io/ ) [Pushshift Reddit API ](https://github.com/pushshift/api ) and the ones from Reddit API. The frontend is written in [React ](https://reactjs.org/ ) and uses [Sass ](https://sass-lang.com/ ) as the CSS Preprocessor. There is also a seperate [backend ](https://github.com/JubbeArt/removeddit-api ) used for storing what threads that have been removed by mods.
2018-02-03 19:40:47 +00:00
# Development
2018-07-29 01:59:04 +00:00
Download either [Yarn ](https://yarnpkg.com/en/docs/install ) (the one I use) or [npm ](https://www.npmjs.com/get-npm )
2018-02-04 16:44:04 +00:00
2018-07-29 01:59:04 +00:00
```bash
2018-02-03 19:40:47 +00:00
sudo git clone https://github.com/JubbeArt/removeddit.git & & cd removeddit
2018-07-29 01:59:04 +00:00
# npm...
2018-02-03 19:40:47 +00:00
npm install
npm start
2017-09-11 21:54:50 +00:00
2018-07-29 01:59:04 +00:00
# or yarn
yarn
yarn start
2017-09-11 21:54:50 +00:00
```
2018-07-29 01:59:04 +00:00
This will build the Javascript files and launch a local server for development. Visit http://localhost:8080 and make sure the site is running.
2017-09-07 20:48:51 +00:00
2018-07-29 01:59:04 +00:00
The CSS is build seperatly (to keep the build steps / configs very simple) by running
```bash
# npm
npm run build-sass
2017-09-11 21:54:50 +00:00
2018-07-29 01:59:04 +00:00
# yarn
yarn run build-sass
2017-09-11 21:54:50 +00:00
```