├── .commitlintrc.json ├── .dockerignore ├── .env.example ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github └── FUNDING.yml ├── .gitignore ├── .husky └── commit-msg ├── .prettierignore ├── .prettierrc.json ├── .vscode └── settings.json ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yml ├── docs ├── endpoints.md └── img │ └── cover-banner.jpg ├── package.json ├── src ├── controllers │ ├── country.ts │ ├── download.ts │ ├── genre.ts │ ├── movie.ts │ ├── search.ts │ ├── series.ts │ ├── stream.ts │ └── year.ts ├── index.ts ├── json │ ├── countries.json │ └── genres.json ├── routes │ └── index.ts ├── scrapers │ ├── country.ts │ ├── download.ts │ ├── genre.ts │ ├── movie.ts │ ├── search.ts │ ├── series.ts │ ├── stream.ts │ └── year.ts ├── server.ts └── types.ts └── tsconfig.json /.commitlintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/.commitlintrc.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /dist 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /dist 3 | .env 4 | -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | /dist 2 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docs/endpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/docs/endpoints.md -------------------------------------------------------------------------------- /docs/img/cover-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/docs/img/cover-banner.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/package.json -------------------------------------------------------------------------------- /src/controllers/country.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/src/controllers/country.ts -------------------------------------------------------------------------------- /src/controllers/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/src/controllers/download.ts -------------------------------------------------------------------------------- /src/controllers/genre.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/src/controllers/genre.ts -------------------------------------------------------------------------------- /src/controllers/movie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/src/controllers/movie.ts -------------------------------------------------------------------------------- /src/controllers/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/src/controllers/search.ts -------------------------------------------------------------------------------- /src/controllers/series.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/src/controllers/series.ts -------------------------------------------------------------------------------- /src/controllers/stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/src/controllers/stream.ts -------------------------------------------------------------------------------- /src/controllers/year.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/src/controllers/year.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/json/countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/src/json/countries.json -------------------------------------------------------------------------------- /src/json/genres.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/src/json/genres.json -------------------------------------------------------------------------------- /src/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/src/routes/index.ts -------------------------------------------------------------------------------- /src/scrapers/country.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/src/scrapers/country.ts -------------------------------------------------------------------------------- /src/scrapers/download.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/src/scrapers/download.ts -------------------------------------------------------------------------------- /src/scrapers/genre.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/src/scrapers/genre.ts -------------------------------------------------------------------------------- /src/scrapers/movie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/src/scrapers/movie.ts -------------------------------------------------------------------------------- /src/scrapers/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/src/scrapers/search.ts -------------------------------------------------------------------------------- /src/scrapers/series.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/src/scrapers/series.ts -------------------------------------------------------------------------------- /src/scrapers/stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/src/scrapers/stream.ts -------------------------------------------------------------------------------- /src/scrapers/year.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/src/scrapers/year.ts -------------------------------------------------------------------------------- /src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/src/server.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/febriadj/lk21-api/HEAD/tsconfig.json --------------------------------------------------------------------------------