├── .gitignore ├── .idea ├── .gitignore ├── misc.xml ├── modules.xml ├── tikvidbot.iml └── vcs.xml ├── INSTALL.md ├── LICENSE.md ├── README.md ├── amd64.dockerfile ├── arm32v7.dockerfile ├── arm64v8.dockerfile ├── bot.js ├── config.example.js ├── config.js ├── docker-compose.yml ├── handler ├── fetch.js └── lang.js ├── hooks ├── post_push └── pre_build ├── init.sql ├── locales ├── en.yaml └── it.yaml ├── media ├── Button.png ├── Button@2x.png ├── Icon.png ├── Icon@2x.png ├── Icon@3x.png ├── Icon@4x.png └── assets.sketch ├── multi-arch-manifest.latest.yml ├── multi-arch-manifest.tag.yml ├── package.json ├── test └── 001-fetch-tiktok-page.spec.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/tikvidbot.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/.idea/tikvidbot.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/README.md -------------------------------------------------------------------------------- /amd64.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/amd64.dockerfile -------------------------------------------------------------------------------- /arm32v7.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/arm32v7.dockerfile -------------------------------------------------------------------------------- /arm64v8.dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/arm64v8.dockerfile -------------------------------------------------------------------------------- /bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/bot.js -------------------------------------------------------------------------------- /config.example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/config.example.js -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/config.js -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /handler/fetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/handler/fetch.js -------------------------------------------------------------------------------- /handler/lang.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/handler/lang.js -------------------------------------------------------------------------------- /hooks/post_push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/hooks/post_push -------------------------------------------------------------------------------- /hooks/pre_build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/hooks/pre_build -------------------------------------------------------------------------------- /init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/init.sql -------------------------------------------------------------------------------- /locales/en.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/locales/en.yaml -------------------------------------------------------------------------------- /locales/it.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/locales/it.yaml -------------------------------------------------------------------------------- /media/Button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/media/Button.png -------------------------------------------------------------------------------- /media/Button@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/media/Button@2x.png -------------------------------------------------------------------------------- /media/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/media/Icon.png -------------------------------------------------------------------------------- /media/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/media/Icon@2x.png -------------------------------------------------------------------------------- /media/Icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/media/Icon@3x.png -------------------------------------------------------------------------------- /media/Icon@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/media/Icon@4x.png -------------------------------------------------------------------------------- /media/assets.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/media/assets.sketch -------------------------------------------------------------------------------- /multi-arch-manifest.latest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/multi-arch-manifest.latest.yml -------------------------------------------------------------------------------- /multi-arch-manifest.tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/multi-arch-manifest.tag.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/package.json -------------------------------------------------------------------------------- /test/001-fetch-tiktok-page.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/test/001-fetch-tiktok-page.spec.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thundersquared/tikvidbot/HEAD/yarn.lock --------------------------------------------------------------------------------