Skip to content

Commit

Permalink
Merge pull request #4 from missmatsuko/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
missmatsuko authored Jan 31, 2020
2 parents 9b08af6 + b5adb50 commit 6b9049a
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 37 deletions.
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
# asl-tab-api

Get a YouTube channel's video data to use in the [ASL Tab browser extension](https:/missmatsuko/asl-tab).

## Instructions

```
# 1. Install packages from `package-lock.json`.
npm ci
# 2. Copy `.env.example` file to `.env` file.
cp .env.example .env
# 3. Manually update `.env` contents
# Key names are pretty self-explanatory
# Currently this project is only built to pull data from a single YouTube playlist
# 4. Run local build and upload
# Note: The more items there are in the playlist, the longer this will take.
# Note: Currently, this will always upload a file named `data.json`.
# This can be edited in `index.js`.
npm start
# 5. Create dist.zip for manual upload to an AWS Lambda function.
npm run package
```
62 changes: 31 additions & 31 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "asl-tab-api",
"version": "1.0.0",
"version": "1.0.1",
"description": "Get a YouTube channel's video data to use in the ASL Tab browser extension.",
"main": "index.js",
"scripts": {
Expand All @@ -19,12 +19,12 @@
},
"homepage": "https:/missmatsuko/asl-tab-api#readme",
"dependencies": {
"esm": "^3.0.84",
"iso8601-duration": "^1.1.6",
"node-fetch": "^2.2.1"
"esm": "^3.2",
"iso8601-duration": "^1.2",
"node-fetch": "^2.6"
},
"devDependencies": {
"aws-sdk": "^2.355.0",
"dotenv": "^6.1.0"
"aws-sdk": "^2.610",
"dotenv": "^8.2"
}
}

0 comments on commit 6b9049a

Please sign in to comment.