├── .gitignore ├── LICENSE ├── README.md ├── app.js ├── config ├── .gitignore ├── config.js └── config.json ├── download.js ├── package.json └── utils.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophior/yfitops/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophior/yfitops/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophior/yfitops/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophior/yfitops/HEAD/app.js -------------------------------------------------------------------------------- /config/.gitignore: -------------------------------------------------------------------------------- 1 | config.json 2 | -------------------------------------------------------------------------------- /config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophior/yfitops/HEAD/config/config.js -------------------------------------------------------------------------------- /config/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophior/yfitops/HEAD/config/config.json -------------------------------------------------------------------------------- /download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophior/yfitops/HEAD/download.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophior/yfitops/HEAD/package.json -------------------------------------------------------------------------------- /utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/christophior/yfitops/HEAD/utils.js --------------------------------------------------------------------------------