Add files via upload

MarseyLivesMatter-GHPages
MarseyLivesMatter 2022-05-03 03:43:09 +08:00 committed by GitHub
commit 37beac9162
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 5896 additions and 0 deletions

7
LICENSE 100644
View File

@ -0,0 +1,7 @@
Copyright (c) 2020-present Camas
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

30
package.json 100644
View File

@ -0,0 +1,30 @@
{
"name": "r-search",
"version": "1.0.0",
"description": "Search reddit using the Pushshift API",
"repository": "https://github.com/MarseyLivesMatter/search.git",
"homepage": "https://MarseyLivesMatter.github.com/search",
"author": "Camas <camas@hotmail.co.uk>",
"license": "MIT",
"private": true,
"scripts": {
"dev": "parcel src/index.html",
"build": "parcel build src/index.html",
"dist": "rm -r ./dist && parcel build --public-url ./ src/index.html && export $(cat .env | xargs) && gh-pages --dist ./dist --repo https://$GH_TOKEN@github.com/camas/reddit-search.git"
},
"devDependencies": {
"@types/react": "^16.9.19",
"@types/react-dom": "^16.9.5",
"cssnano": "^4.1.10",
"gh-pages": "^2.2.0",
"tailwindcss": "^1.2.0",
"typescript": "^3.7.5"
},
"dependencies": {
"parcel-bundler": "^1.12.4",
"parcel-plugin-inliner": "^1.0.13",
"react": "^16.12.0",
"react-datepicker": "^2.12.1",
"react-dom": "^16.12.0"
}
}

View File

@ -0,0 +1,6 @@
module.exports = {
plugins: [
require('tailwindcss'),
require('autoprefixer')
]
}

7
readme.md 100644
View File

@ -0,0 +1,7 @@
# Reddit Search
Live at <https://camas.github.io/reddit-search/>
Uses the [pushshift.io API](https://pushshift.io/api-parameters/) to fetch comment data.
[_web development is my passion_](https://i.kym-cdn.com/photos/images/newsfeed/001/018/866/e44.png)

View File

@ -0,0 +1,9 @@
module.exports = {
theme: {
extend: {
colors: {
dark: '#121212'
}
}
}
}

5837
yarn.lock 100644

File diff suppressed because it is too large Load Diff