├── .circleci └── config.yml ├── .gitignore ├── .travis.yml ├── 5.json ├── Dockerfile ├── Gruntfile.js ├── LICENSE ├── Procfile ├── README.md ├── docs ├── configuracion_inicial │ ├── configuracion_inicial.md │ └── imagenes │ │ ├── Screenshot_1.png │ │ ├── Screenshot_2.png │ │ └── Screenshot_3.png ├── doc_docker │ └── docker.md ├── elecciondocker │ ├── elecciondocker.md │ └── imagenes │ │ ├── alpine14.png │ │ ├── buster14.png │ │ ├── busterslim14.png │ │ ├── selecciontamanos.png │ │ ├── stretch14.png │ │ ├── stretchslim14.png │ │ ├── tamanos - copia.png │ │ ├── tamanos.png │ │ ├── tamanosbuild.png │ │ ├── timealpine15.png │ │ ├── timebuster15.png │ │ ├── timebusterslim15.png │ │ └── timestretch15.png ├── herramientas │ └── herramientas.md ├── historias_usuario │ ├── historiasdeusuario.md │ └── imagenes │ │ ├── historias.png │ │ └── milestones.png ├── instalacion_mochachai │ └── mochchai.md ├── integracioncontinua │ └── ci.md ├── justificacion_framework │ ├── hola_express.png │ ├── hola_loopback.png │ ├── post_express.png │ └── post_loopback.png ├── logo.png ├── microservicio │ └── README.md ├── paas │ ├── README.md │ └── img │ │ ├── app.png │ │ ├── conectado.png │ │ └── despliegue_autom.png ├── pasos │ └── pasos.md ├── sistemas_serverless │ ├── README.md │ └── img │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ └── 6.png └── tests │ ├── ejemploejecucion_express.png │ ├── microservicio_docker.png │ ├── primeraejecucion.png │ └── tests.md ├── functions ├── buscaseries.js ├── buscaseries.ts ├── hola.js ├── holatype.js └── holatype.ts ├── iv.yaml ├── netlify.toml ├── package.json ├── src ├── Dockerfile ├── api │ ├── consultor.ts │ ├── database.json │ └── hola.ts ├── downloader.ts ├── index.js ├── index.ts ├── serie.ts ├── server.ts └── usuario.ts ├── tests ├── downloader.spec.ts ├── index.spec.js ├── serie.spec.ts └── usuario.spec.ts └── tsconfig.json /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/.travis.yml -------------------------------------------------------------------------------- /5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/5.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: grunt launch -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/README.md -------------------------------------------------------------------------------- /docs/configuracion_inicial/configuracion_inicial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/configuracion_inicial/configuracion_inicial.md -------------------------------------------------------------------------------- /docs/configuracion_inicial/imagenes/Screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/configuracion_inicial/imagenes/Screenshot_1.png -------------------------------------------------------------------------------- /docs/configuracion_inicial/imagenes/Screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/configuracion_inicial/imagenes/Screenshot_2.png -------------------------------------------------------------------------------- /docs/configuracion_inicial/imagenes/Screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/configuracion_inicial/imagenes/Screenshot_3.png -------------------------------------------------------------------------------- /docs/doc_docker/docker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/doc_docker/docker.md -------------------------------------------------------------------------------- /docs/elecciondocker/elecciondocker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/elecciondocker/elecciondocker.md -------------------------------------------------------------------------------- /docs/elecciondocker/imagenes/alpine14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/elecciondocker/imagenes/alpine14.png -------------------------------------------------------------------------------- /docs/elecciondocker/imagenes/buster14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/elecciondocker/imagenes/buster14.png -------------------------------------------------------------------------------- /docs/elecciondocker/imagenes/busterslim14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/elecciondocker/imagenes/busterslim14.png -------------------------------------------------------------------------------- /docs/elecciondocker/imagenes/selecciontamanos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/elecciondocker/imagenes/selecciontamanos.png -------------------------------------------------------------------------------- /docs/elecciondocker/imagenes/stretch14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/elecciondocker/imagenes/stretch14.png -------------------------------------------------------------------------------- /docs/elecciondocker/imagenes/stretchslim14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/elecciondocker/imagenes/stretchslim14.png -------------------------------------------------------------------------------- /docs/elecciondocker/imagenes/tamanos - copia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/elecciondocker/imagenes/tamanos - copia.png -------------------------------------------------------------------------------- /docs/elecciondocker/imagenes/tamanos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/elecciondocker/imagenes/tamanos.png -------------------------------------------------------------------------------- /docs/elecciondocker/imagenes/tamanosbuild.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/elecciondocker/imagenes/tamanosbuild.png -------------------------------------------------------------------------------- /docs/elecciondocker/imagenes/timealpine15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/elecciondocker/imagenes/timealpine15.png -------------------------------------------------------------------------------- /docs/elecciondocker/imagenes/timebuster15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/elecciondocker/imagenes/timebuster15.png -------------------------------------------------------------------------------- /docs/elecciondocker/imagenes/timebusterslim15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/elecciondocker/imagenes/timebusterslim15.png -------------------------------------------------------------------------------- /docs/elecciondocker/imagenes/timestretch15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/elecciondocker/imagenes/timestretch15.png -------------------------------------------------------------------------------- /docs/herramientas/herramientas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/herramientas/herramientas.md -------------------------------------------------------------------------------- /docs/historias_usuario/historiasdeusuario.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/historias_usuario/historiasdeusuario.md -------------------------------------------------------------------------------- /docs/historias_usuario/imagenes/historias.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/historias_usuario/imagenes/historias.png -------------------------------------------------------------------------------- /docs/historias_usuario/imagenes/milestones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/historias_usuario/imagenes/milestones.png -------------------------------------------------------------------------------- /docs/instalacion_mochachai/mochchai.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/instalacion_mochachai/mochchai.md -------------------------------------------------------------------------------- /docs/integracioncontinua/ci.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/integracioncontinua/ci.md -------------------------------------------------------------------------------- /docs/justificacion_framework/hola_express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/justificacion_framework/hola_express.png -------------------------------------------------------------------------------- /docs/justificacion_framework/hola_loopback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/justificacion_framework/hola_loopback.png -------------------------------------------------------------------------------- /docs/justificacion_framework/post_express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/justificacion_framework/post_express.png -------------------------------------------------------------------------------- /docs/justificacion_framework/post_loopback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/justificacion_framework/post_loopback.png -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/logo.png -------------------------------------------------------------------------------- /docs/microservicio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/microservicio/README.md -------------------------------------------------------------------------------- /docs/paas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/paas/README.md -------------------------------------------------------------------------------- /docs/paas/img/app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/paas/img/app.png -------------------------------------------------------------------------------- /docs/paas/img/conectado.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/paas/img/conectado.png -------------------------------------------------------------------------------- /docs/paas/img/despliegue_autom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/paas/img/despliegue_autom.png -------------------------------------------------------------------------------- /docs/pasos/pasos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/pasos/pasos.md -------------------------------------------------------------------------------- /docs/sistemas_serverless/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/sistemas_serverless/README.md -------------------------------------------------------------------------------- /docs/sistemas_serverless/img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/sistemas_serverless/img/1.png -------------------------------------------------------------------------------- /docs/sistemas_serverless/img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/sistemas_serverless/img/2.png -------------------------------------------------------------------------------- /docs/sistemas_serverless/img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/sistemas_serverless/img/3.png -------------------------------------------------------------------------------- /docs/sistemas_serverless/img/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/sistemas_serverless/img/4.png -------------------------------------------------------------------------------- /docs/sistemas_serverless/img/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/sistemas_serverless/img/5.png -------------------------------------------------------------------------------- /docs/sistemas_serverless/img/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/sistemas_serverless/img/6.png -------------------------------------------------------------------------------- /docs/tests/ejemploejecucion_express.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/tests/ejemploejecucion_express.png -------------------------------------------------------------------------------- /docs/tests/microservicio_docker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/tests/microservicio_docker.png -------------------------------------------------------------------------------- /docs/tests/primeraejecucion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/tests/primeraejecucion.png -------------------------------------------------------------------------------- /docs/tests/tests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/docs/tests/tests.md -------------------------------------------------------------------------------- /functions/buscaseries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/functions/buscaseries.js -------------------------------------------------------------------------------- /functions/buscaseries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/functions/buscaseries.ts -------------------------------------------------------------------------------- /functions/hola.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/functions/hola.js -------------------------------------------------------------------------------- /functions/holatype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/functions/holatype.js -------------------------------------------------------------------------------- /functions/holatype.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/functions/holatype.ts -------------------------------------------------------------------------------- /iv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/iv.yaml -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/package.json -------------------------------------------------------------------------------- /src/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/src/Dockerfile -------------------------------------------------------------------------------- /src/api/consultor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/src/api/consultor.ts -------------------------------------------------------------------------------- /src/api/database.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/src/api/database.json -------------------------------------------------------------------------------- /src/api/hola.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/src/api/hola.ts -------------------------------------------------------------------------------- /src/downloader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/src/downloader.ts -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/serie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/src/serie.ts -------------------------------------------------------------------------------- /src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/src/server.ts -------------------------------------------------------------------------------- /src/usuario.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/src/usuario.ts -------------------------------------------------------------------------------- /tests/downloader.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/tests/downloader.spec.ts -------------------------------------------------------------------------------- /tests/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/tests/index.spec.js -------------------------------------------------------------------------------- /tests/serie.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/tests/serie.spec.ts -------------------------------------------------------------------------------- /tests/usuario.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/tests/usuario.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytevictor/AnimeFLV-API/HEAD/tsconfig.json --------------------------------------------------------------------------------