Update README

This commit is contained in:
Maksym Pavlenko
2017-08-22 18:57:23 -07:00
parent f0e13acd83
commit f9a32052f3
+15 -1
View File
@@ -14,4 +14,18 @@ Docker will run `gulp` and include `dist` and `templates` directories during bui
In order to login via Patreon the following variables should be configured:
- `PATREON_REDIRECT_URL` should point to `http://yout_host_here/patreon`
- `PATREON_CLIENT_ID` and `PATREON_SECRET` should be copied from https://www.patreon.com/platform/documentation/clients
- `PATREON_CLIENT_ID` and `PATREON_SECRET` should be copied from https://www.patreon.com/platform/documentation/clients
## Deploy Docker images
Build docker image:
```
docker build -t ytdl .
```
Deploy image to Container Registry:
```
docker tag ytdl gcr.io/pod-sync/ytdl
gcloud auth application-default login
gcloud docker -- push gcr.io/pod-sync/ytdl
```