Take control over your youtube subscriptions.
- Watch all their uploads, chronologically.
- Watch any channels' uploads
You will need the following things properly installed on your computer.
- Git
- Node.js (with npm do
npm i -g npm yarn ember-cli
) - Ember CLI
- Google Chrome
git clone <repository-url>
this repositorycd yourtube
yarn
Do this while you wait:
Go to Google Developer Console and:
- Create a project
cp .env.sample > .env
- Create an API Key (Restrict it to Youtube Data API) as
GOOGLE_API_KEY
- Create an OAuth 2.0 Client ID
- App. Type: Web App.
- Name: Dev (Make another one for prod.)
- URIs: https://localhost:4200
- as
OAUTH_CLIENT_ID
Export them into current session:
set -a
source .env
set +a
env | grep -i 'google' # make sure those variables are shown
ember serve
- Visit your app at http://localhost:4200.
- Visit your tests at http://localhost:4200/tests.
Make use of the many generators for code, try ember help generate
for more details
ember test
ember test --server
npm run lint
npm run lint:fix
ember build
(development)ember build --environment production
(production)
Specify what it takes to deploy your app.
It feels overly complicated. And not enough documentation.