├── .babelrc ├── .gcloudignore ├── .gitignore ├── README.md ├── app.yaml ├── backup_in_case_of_service_down └── example.json ├── index.js ├── package.json └── stories.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15Dkatz/news-proxy/HEAD/.babelrc -------------------------------------------------------------------------------- /.gcloudignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15Dkatz/news-proxy/HEAD/.gcloudignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *node_modules* 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15Dkatz/news-proxy/HEAD/README.md -------------------------------------------------------------------------------- /app.yaml: -------------------------------------------------------------------------------- 1 | runtime: nodejs10 2 | -------------------------------------------------------------------------------- /backup_in_case_of_service_down/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15Dkatz/news-proxy/HEAD/backup_in_case_of_service_down/example.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15Dkatz/news-proxy/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15Dkatz/news-proxy/HEAD/package.json -------------------------------------------------------------------------------- /stories.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/15Dkatz/news-proxy/HEAD/stories.json --------------------------------------------------------------------------------