├── .DS_Store ├── README.md ├── cron-ticker ├── .DS_Store ├── .dockerignore ├── .gitignore ├── Dockerfile ├── README.md ├── app.js ├── package.json ├── tasks │ └── sync-db.js └── tests │ └── tasks │ └── sync-db.test.js ├── graphql-actions ├── .dockerignore ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── Dockerfile ├── README.md ├── nest-cli.json ├── package.json ├── src │ ├── app.module.ts │ ├── hello-world │ │ ├── hello-world.module.ts │ │ └── hello-world.resolver.ts │ ├── main.ts │ ├── schema.gql │ └── todo │ │ ├── dto │ │ ├── args │ │ │ └── status.args.ts │ │ ├── index.ts │ │ └── inputs │ │ │ ├── create-todo.input.ts │ │ │ ├── index.ts │ │ │ └── update-todo.input.ts │ │ ├── entity │ │ └── todo.entity.ts │ │ ├── todo.module.ts │ │ ├── todo.resolver.ts │ │ ├── todo.service.ts │ │ └── types │ │ └── aggregations.type.ts ├── test │ ├── app.e2e-spec.ts │ └── jest-e2e.json ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock ├── k8s-teslo ├── .DS_Store ├── README.md ├── backend-secrets.yml ├── backend.yml ├── pg-admin-secrets.yml ├── pg-admin.yml ├── postgres-config.yml ├── postgres-secrets.yml └── postgres.yml ├── nest-graphql ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── README.md ├── nest-cli.json ├── package.json ├── src │ ├── app.module.ts │ ├── hello-world │ │ ├── hello-world.module.ts │ │ └── hello-world.resolver.ts │ ├── main.ts │ ├── schema.gql │ └── todo │ │ ├── dto │ │ ├── args │ │ │ └── status.args.ts │ │ ├── index.ts │ │ └── inputs │ │ │ ├── create-todo.input.ts │ │ │ ├── index.ts │ │ │ └── update-todo.input.ts │ │ ├── entity │ │ └── todo.entity.ts │ │ ├── todo.module.ts │ │ ├── todo.resolver.ts │ │ ├── todo.service.ts │ │ └── types │ │ └── aggregations.type.ts ├── test │ ├── app.e2e-spec.ts │ └── jest-e2e.json ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock ├── pokemon-app ├── .env └── docker-compose.yml ├── postgres-pgadmin ├── .DS_Store ├── .gitignore └── docker-compose.yml ├── react-heroes ├── .dockerignore ├── .gitignore ├── Dockerfile ├── assets │ └── heroes │ │ ├── dc-arrow.jpg │ │ ├── dc-batman.jpg │ │ ├── dc-black.jpg │ │ ├── dc-blue.jpg │ │ ├── dc-flash.jpg │ │ ├── dc-green.jpg │ │ ├── dc-martian.jpg │ │ ├── dc-robin.jpg │ │ ├── dc-superman.jpg │ │ ├── dc-wonder.jpg │ │ ├── marvel-captain.jpg │ │ ├── marvel-cyclops.jpg │ │ ├── marvel-daredevil.jpg │ │ ├── marvel-hawkeye.jpg │ │ ├── marvel-hulk.jpg │ │ ├── marvel-iron.jpg │ │ ├── marvel-silver.jpg │ │ ├── marvel-spider.jpg │ │ ├── marvel-thor.jpg │ │ └── marvel-wolverine.jpg ├── babel.config.js ├── index.html ├── jest.config.js ├── nginx │ └── nginx.conf ├── package.json ├── src │ ├── HeroesApp.jsx │ ├── auth │ │ ├── context │ │ │ ├── AuthContext.jsx │ │ │ ├── AuthProvider.jsx │ │ │ ├── authReducer.js │ │ │ └── index.js │ │ ├── index.js │ │ ├── pages │ │ │ ├── LoginPage.jsx │ │ │ └── index.js │ │ └── types │ │ │ └── types.js │ ├── heroes │ │ ├── components │ │ │ ├── HeroCard.jsx │ │ │ ├── HeroList.jsx │ │ │ └── index.js │ │ ├── data │ │ │ └── heroes.js │ │ ├── helpers │ │ │ ├── getHeroById.js │ │ │ ├── getHeroesByName.js │ │ │ ├── getHeroesByPublisher.js │ │ │ └── index.js │ │ ├── index.js │ │ ├── pages │ │ │ ├── DcPage.jsx │ │ │ ├── HeroPage.jsx │ │ │ ├── MarvelPage.jsx │ │ │ ├── SearchPage.jsx │ │ │ └── index.js │ │ └── routes │ │ │ └── HeroesRoutes.jsx │ ├── hooks │ │ └── useForm.js │ ├── main.jsx │ ├── router │ │ ├── AppRouter.jsx │ │ ├── PrivateRoute.jsx │ │ └── PublicRoute.jsx │ ├── styles.css │ └── ui │ │ ├── components │ │ ├── Navbar.jsx │ │ └── index.js │ │ └── index.js ├── tests │ ├── auth │ │ ├── context │ │ │ └── authReducer.test.js │ │ └── types │ │ │ └── types.test.js │ ├── heroes │ │ └── pages │ │ │ ├── SearchPage.test.jsx │ │ │ └── __snapshots__ │ │ │ └── SearchPage.test.jsx.snap │ ├── router │ │ ├── AppRouter.test.jsx │ │ ├── PrivateRoute.test.jsx │ │ └── PublicRoute.test.jsx │ └── ui │ │ └── components │ │ └── Navbar.test.jsx ├── vite.config.js └── yarn.lock ├── teslo-shop ├── .dockerignore ├── .env.template ├── .eslintrc.js ├── .gitignore ├── .prettierrc ├── .vscode │ └── tasks.json ├── Dockerfile ├── README.md ├── docker-compose.prod.yml ├── docker-compose.yml ├── nest-cli.json ├── package.json ├── src │ ├── app.module.ts │ ├── auth │ │ ├── auth.controller.ts │ │ ├── auth.module.ts │ │ ├── auth.service.ts │ │ ├── decorators │ │ │ ├── auth.decorator.ts │ │ │ ├── get-user.decorator.ts │ │ │ ├── index.ts │ │ │ ├── raw-headers.decorator.ts │ │ │ └── role-protected.decorator.ts │ │ ├── dto │ │ │ ├── create-user.dto.ts │ │ │ ├── index.ts │ │ │ └── login-user.dto.ts │ │ ├── entities │ │ │ └── user.entity.ts │ │ ├── guards │ │ │ └── user-role.guard.ts │ │ ├── interfaces │ │ │ ├── index.ts │ │ │ ├── jwt-payload.interface.ts │ │ │ └── valid-roles.ts │ │ └── strategies │ │ │ └── jwt.strategy.ts │ ├── common │ │ ├── common.module.ts │ │ └── dtos │ │ │ └── pagination.dto.ts │ ├── files │ │ ├── files.controller.ts │ │ ├── files.module.ts │ │ ├── files.service.ts │ │ └── helpers │ │ │ ├── fileFilter.helper.ts │ │ │ ├── fileNamer.helper.ts │ │ │ └── index.ts │ ├── main.ts │ ├── messages-ws │ │ ├── dtos │ │ │ └── new-message.dto.ts │ │ ├── messages-ws.gateway.ts │ │ ├── messages-ws.module.ts │ │ └── messages-ws.service.ts │ ├── products │ │ ├── dto │ │ │ ├── create-product.dto.ts │ │ │ └── update-product.dto.ts │ │ ├── entities │ │ │ ├── index.ts │ │ │ ├── product-image.entity.ts │ │ │ └── product.entity.ts │ │ ├── products.controller.ts │ │ ├── products.module.ts │ │ └── products.service.ts │ └── seed │ │ ├── data │ │ └── seed-data.ts │ │ ├── seed.controller.ts │ │ ├── seed.module.ts │ │ └── seed.service.ts ├── static │ ├── products │ │ ├── .gitkeep │ │ ├── 100042301_0_2000.jpg │ │ ├── 100042301_alt.jpg │ │ ├── 100042307_0_2000.jpg │ │ ├── 100042307_1_2000.jpg │ │ ├── 100042307_alt.jpg │ │ ├── 100042307_alt_2000.jpg │ │ ├── 1473809-00-A_1_2000.jpg │ │ ├── 1473809-00-A_alt.jpg │ │ ├── 1473814-00-A_1_2000.jpg │ │ ├── 1473814-00-A_alt.jpg │ │ ├── 1473819-00-A_1_2000.jpg │ │ ├── 1473819-00-A_alt.jpg │ │ ├── 1473824-00-A_2_2000.jpg │ │ ├── 1473829-00-A_2_2000.jpg │ │ ├── 1473834-00-A_2_2000.jpg │ │ ├── 1506211-00-A_0_2000.jpg │ │ ├── 1506211-00-A_1_2000.jpg │ │ ├── 1549268-00-A_0_2000.jpg │ │ ├── 1549268-00-A_2.jpg │ │ ├── 1549275-00-A_0_2000.jpg │ │ ├── 1549275-00-A_1.jpg │ │ ├── 1623735-00-A_0_2000.jpg │ │ ├── 1623735-00-A_1.jpg │ │ ├── 1623736-00-A_0_2000.jpg │ │ ├── 1623736-00-A_1.jpg │ │ ├── 1623739-00-A_0_2000.jpg │ │ ├── 1623739-00-A_1.jpg │ │ ├── 1633802-00-A_0_2000.jpg │ │ ├── 1633802-00-A_2.jpg │ │ ├── 1657891-00-A_0_2000.jpg │ │ ├── 1657891-00-A_1.jpg │ │ ├── 1657914-00-A_0_2000.jpg │ │ ├── 1657914-00-A_1.jpg │ │ ├── 1657915-00-A_0_2000.jpg │ │ ├── 1657915-00-A_1.jpg │ │ ├── 1657916-00-A_0_2000.jpg │ │ ├── 1657916-00-A_1.jpg │ │ ├── 1657921-00-A_0_2000.jpg │ │ ├── 1657921-00-A_1.jpg │ │ ├── 1657931-00-A_0_2000.jpg │ │ ├── 1657931-00-A_1.jpg │ │ ├── 1657932-00-A_0_2000.jpg │ │ ├── 1657932-00-A_1.jpg │ │ ├── 1657933-00-A_0_2000.jpg │ │ ├── 1657933-00-A_1.jpg │ │ ├── 1693862-00-A_0_2000.jpg │ │ ├── 1693862-00-A_1.jpg │ │ ├── 1693862-03-A_0_2000.jpg │ │ ├── 1693862-03-A_1.jpg │ │ ├── 1693867-00-A_0_2000.jpg │ │ ├── 1693867-00-A_1.jpg │ │ ├── 1693867-02-A_0_2000.jpg │ │ ├── 1693867-02-A_1.jpg │ │ ├── 1700280-00-A_0_2000.jpg │ │ ├── 1700280-00-A_1.jpg │ │ ├── 1703767-00-A_0_2000.jpg │ │ ├── 1703767-00-A_1.jpg │ │ ├── 1715672-00-A_featured.jpg │ │ ├── 1740051-00-A_0_2000.jpg │ │ ├── 1740051-00-A_1.jpg │ │ ├── 1740113-00-A_0_2000.jpg │ │ ├── 1740113-00-A_1.jpg │ │ ├── 1740121-00-A_0_2000.jpg │ │ ├── 1740121-00-A_1.jpg │ │ ├── 1740140-00-A_0_2000.jpg │ │ ├── 1740140-00-A_1.jpg │ │ ├── 1740145-00-A_1.jpg │ │ ├── 1740145-00-A_2_2000.jpg │ │ ├── 1740176-00-A_0_2000.jpg │ │ ├── 1740176-00-A_1.jpg │ │ ├── 1740211-00-A_0_2000.jpg │ │ ├── 1740211-00-A_1.jpg │ │ ├── 1740216-00-A_0_2000.jpg │ │ ├── 1740216-00-A_1.jpg │ │ ├── 1740221-00-A_0_2000.jpg │ │ ├── 1740221-00-A_1.jpg │ │ ├── 1740226-00-A_0_2000.jpg │ │ ├── 1740226-00-A_1.jpg │ │ ├── 1740231-00-A_0_2000.jpg │ │ ├── 1740231-00-A_1.jpg │ │ ├── 1740236-00-A_0_2000.jpg │ │ ├── 1740236-00-A_1.jpg │ │ ├── 1740245-00-A_0_2000.jpg │ │ ├── 1740245-00-A_1.jpg │ │ ├── 1740250-00-A_0_2000.jpg │ │ ├── 1740250-00-A_1.jpg │ │ ├── 1740255-00-A_0_2000.jpg │ │ ├── 1740255-00-A_1.jpg │ │ ├── 1740260-00-A_0_2000.jpg │ │ ├── 1740260-00-A_1.jpg │ │ ├── 1740270-00-A_0_2000.jpg │ │ ├── 1740270-00-A_1.jpg │ │ ├── 1740275-00-A_0_2000.jpg │ │ ├── 1740275-00-A_1.jpg │ │ ├── 1740280-00-A_0_2000.jpg │ │ ├── 1740280-00-A_1.jpg │ │ ├── 1740285-00-A_0_2000.jpg │ │ ├── 1740285-00-A_1.jpg │ │ ├── 1740290-00-A_0_2000.jpg │ │ ├── 1740290-00-A_1.jpg │ │ ├── 1740406-00-A_0_2000.jpg │ │ ├── 1740406-00-A_1.jpg │ │ ├── 1740407-00-A_0_2000.jpg │ │ ├── 1740407-00-A_1.jpg │ │ ├── 1740408-00-A_0_2000.jpg │ │ ├── 1740408-00-A_1.jpg │ │ ├── 1740409-00-A_0_2000.jpg │ │ ├── 1740409-00-A_1.jpg │ │ ├── 1740410-00-A_0_2000.jpg │ │ ├── 1740410-00-A_1.jpg │ │ ├── 1740411-00-A_0_2000.jpg │ │ ├── 1740411-00-A_1.jpg │ │ ├── 1740413-00-A_0_2000.jpg │ │ ├── 1740413-00-A_1.jpg │ │ ├── 1740414-00-A_0_2000.jpg │ │ ├── 1740414-00-A_1.jpg │ │ ├── 1740416-00-A_0_2000.jpg │ │ ├── 1740416-00-A_1.jpg │ │ ├── 1740417-00-A_0_2000.jpg │ │ ├── 1740417-00-A_1.jpg │ │ ├── 1740507-00-A_0_2000.jpg │ │ ├── 1740507-00-A_1.jpg │ │ ├── 1740514-00-A_0_2000.jpg │ │ ├── 1740514-00-A_1.jpg │ │ ├── 1740521-00-A_0_2000.jpg │ │ ├── 1740521-00-A_1.jpg │ │ ├── 1740528-00-A_0_2000.jpg │ │ ├── 1740528-00-A_1.jpg │ │ ├── 1740535-00-A_0_2000.jpg │ │ ├── 1740535-00-A_1.jpg │ │ ├── 1741111-00-A_0_2000.jpg │ │ ├── 1741111-00-A_1.jpg │ │ ├── 1741416-00-A_0_2000.jpg │ │ ├── 1741416-00-A_1.jpg │ │ ├── 1741425-00-A_0_2000.jpg │ │ ├── 1741425-00-A_1.jpg │ │ ├── 1741441-00-A_0_2000.jpg │ │ ├── 1741441-00-A_1.jpg │ │ ├── 1741449-00-A_0_2000.jpg │ │ ├── 1741449-00-A_1.jpg │ │ ├── 1741611-00-A_1_2000.jpg │ │ ├── 1741613-00-A_1_2000.jpg │ │ ├── 1741615-00-A_1_2000.jpg │ │ ├── 1741617-00-A_1_2000.jpg │ │ ├── 1741619-00-A_1_2000.jpg │ │ ├── 1741621-00-A_1_2000.jpg │ │ ├── 1742694-00-A_1_2000.jpg │ │ ├── 1742694-00-A_3.jpg │ │ ├── 1742702-00-A_0_2000.jpg │ │ ├── 1742702-00-A_1.jpg │ │ ├── 31bef8d9-ef07-4980-8db8-059364d31688.png │ │ ├── 5645680-00-A_0_2000.jpg │ │ ├── 5645680-00-A_3.jpg │ │ ├── 5645685-00-A_0_2000.jpg │ │ ├── 5645685-00-A_3.jpg │ │ ├── 7652410-00-A_0.jpg │ │ ├── 7652410-00-A_1_2000.jpg │ │ ├── 7652421-00-A_0_2000.jpg │ │ ├── 7652421-00-A_1.jpg │ │ ├── 7652426-00-A_0_2000.jpg │ │ ├── 7652426-00-A_1.jpg │ │ ├── 7652432-00-A_0_2000.jpg │ │ ├── 7652432-00-A_1.jpg │ │ ├── 7652453-00-A_0_2000.jpg │ │ ├── 7652453-00-A_1.jpg │ │ ├── 7652459-00-A_0_2000.jpg │ │ ├── 7652459-00-A_1.jpg │ │ ├── 7652465-00-A_0_2000.jpg │ │ ├── 7652465-00-A_1.jpg │ │ ├── 7654393-00-A_2_2000.jpg │ │ ├── 7654393-00-A_3.jpg │ │ ├── 7654399-00-A_0_2000.jpg │ │ ├── 7654399-00-A_1.jpg │ │ ├── 7654420-00-A_0_2000.jpg │ │ ├── 7654420-00-A_1_2000.jpg │ │ ├── 8528833-00-A_0_2000.jpg │ │ ├── 8528833-00-A_2.jpg │ │ ├── 8528839-00-A_0_2000.jpg │ │ ├── 8528839-00-A_2.jpg │ │ ├── 8528845-00-A_0_2000.jpg │ │ ├── 8528845-00-A_2.jpg │ │ ├── 8529100-00-A_0_2000.jpg │ │ ├── 8529100-00-A_1.jpg │ │ ├── 8529107-00-A_0_2000.jpg │ │ ├── 8529107-00-A_1.jpg │ │ ├── 8529198-00-A_0_2000.jpg │ │ ├── 8529198-00-A_1.jpg │ │ ├── 8529205-00-A_0_2000.jpg │ │ ├── 8529205-00-A_1.jpg │ │ ├── 8529212-00-A_0_2000.jpg │ │ ├── 8529212-00-A_1.jpg │ │ ├── 8529312-00-A_0_2000.jpg │ │ ├── 8529312-00-A_1.jpg │ │ ├── 8529318-00-A_0_2000.jpg │ │ ├── 8529318-00-A_1.jpg │ │ ├── 8529336-00-A_0_2000.jpg │ │ ├── 8529336-00-A_1.jpg │ │ ├── 8529342-00-A_0_2000.jpg │ │ ├── 8529342-00-A_1.jpg │ │ ├── 8529348-00-A_0_2000.jpg │ │ ├── 8529348-00-A_1.jpg │ │ ├── 8529354-00-A_0_2000.jpg │ │ ├── 8529354-00-A_1.jpg │ │ ├── 8529360-00-A_0_2000.jpg │ │ ├── 8529360-00-A_1.jpg │ │ ├── 8529366-00-A_0_2000.jpg │ │ ├── 8529366-00-A_1.jpg │ │ ├── 8529382-00-A_0_2000.jpg │ │ ├── 8529382-00-A_1.jpg │ │ ├── 8529387-00-A_0_2000.jpg │ │ ├── 8529387-00-A_1.jpg │ │ ├── 8764600-00-A_0_2000.jpg │ │ ├── 8764600-00-A_2.jpg │ │ ├── 8764613-00-A_0_2000.jpg │ │ ├── 8764613-00-A_1.jpg │ │ ├── 8764727-00-A_0_2000.jpg │ │ ├── 8764727-00-A_1.jpg │ │ ├── 8764734-00-A_0_2000.jpg │ │ ├── 8764734-00-A_1.jpg │ │ ├── 8764741-00-A_0_2000.jpg │ │ ├── 8764741-00-A_2.jpg │ │ ├── 8764754-00-A_0_2000.jpg │ │ ├── 8764754-00-A_2.jpg │ │ ├── 8764760-00-A_0_2000.jpg │ │ ├── 8764760-00-A_1.jpg │ │ ├── 8764766-00-A_0_2000.jpg │ │ ├── 8764766-00-A_2.jpg │ │ ├── 8764792-00-A_0_2000.jpg │ │ ├── 8764792-00-A_1.jpg │ │ ├── 8764806-00-A_0_2000.jpg │ │ ├── 8764806-00-A_1.jpg │ │ ├── 8764813-00-A_0_2000.jpg │ │ ├── 8764813-00-A_1.jpg │ │ ├── 8765085-00-A_0_2000.jpg │ │ ├── 8765085-00-A_1.jpg │ │ ├── 8765090-00-A_0_2000.jpg │ │ ├── 8765090-00-A_1.jpg │ │ ├── 8765095-00-A_0_2000.jpg │ │ ├── 8765095-00-A_1.jpg │ │ ├── 8765100-00-A_0_2000.jpg │ │ ├── 8765100-00-A_1.jpg │ │ ├── 8765105-00-A_0_2000.jpg │ │ ├── 8765105-00-A_1.jpg │ │ ├── 8765110-00-A_0_2000.jpg │ │ ├── 8765110-00-A_1.jpg │ │ ├── 8765115-00-A_0_2000.jpg │ │ ├── 8765115-00-A_1.jpg │ │ ├── 8765120-00-A_0_2000.jpg │ │ ├── 8765120-00-A_1.jpg │ │ ├── 8765125-00-A_0_2000.jpg │ │ ├── 8765125-00-A_1.jpg │ │ ├── 8765130-00-A_0_2000.jpg │ │ ├── 8765130-00-A_1.jpg │ │ ├── 9877034-00-A_0_2000.jpg │ │ ├── 9877034-00-A_2.jpg │ │ ├── 9877040-00-A_0_2000.jpg │ │ └── 9877040-00-A_1.jpg │ └── uploads │ │ └── .gitkeep ├── test │ ├── app.e2e-spec.ts │ └── jest-e2e.json ├── tsconfig.build.json ├── tsconfig.json └── yarn.lock └── teslo-testing ├── .env └── docker-compose.yml /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/README.md -------------------------------------------------------------------------------- /cron-ticker/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/cron-ticker/.DS_Store -------------------------------------------------------------------------------- /cron-ticker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/cron-ticker/.dockerignore -------------------------------------------------------------------------------- /cron-ticker/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | 3 | package-lock.json -------------------------------------------------------------------------------- /cron-ticker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/cron-ticker/Dockerfile -------------------------------------------------------------------------------- /cron-ticker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/cron-ticker/README.md -------------------------------------------------------------------------------- /cron-ticker/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/cron-ticker/app.js -------------------------------------------------------------------------------- /cron-ticker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/cron-ticker/package.json -------------------------------------------------------------------------------- /cron-ticker/tasks/sync-db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/cron-ticker/tasks/sync-db.js -------------------------------------------------------------------------------- /cron-ticker/tests/tasks/sync-db.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/cron-ticker/tests/tasks/sync-db.test.js -------------------------------------------------------------------------------- /graphql-actions/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/graphql-actions/.dockerignore -------------------------------------------------------------------------------- /graphql-actions/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/graphql-actions/.eslintrc.js -------------------------------------------------------------------------------- /graphql-actions/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/graphql-actions/.gitignore -------------------------------------------------------------------------------- /graphql-actions/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/graphql-actions/.prettierrc -------------------------------------------------------------------------------- /graphql-actions/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/graphql-actions/Dockerfile -------------------------------------------------------------------------------- /graphql-actions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/graphql-actions/README.md -------------------------------------------------------------------------------- /graphql-actions/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/graphql-actions/nest-cli.json -------------------------------------------------------------------------------- /graphql-actions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/graphql-actions/package.json -------------------------------------------------------------------------------- /graphql-actions/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/graphql-actions/src/app.module.ts -------------------------------------------------------------------------------- /graphql-actions/src/hello-world/hello-world.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/graphql-actions/src/hello-world/hello-world.module.ts -------------------------------------------------------------------------------- /graphql-actions/src/hello-world/hello-world.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/graphql-actions/src/hello-world/hello-world.resolver.ts -------------------------------------------------------------------------------- /graphql-actions/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/graphql-actions/src/main.ts -------------------------------------------------------------------------------- /graphql-actions/src/schema.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/graphql-actions/src/schema.gql -------------------------------------------------------------------------------- /graphql-actions/src/todo/dto/args/status.args.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/graphql-actions/src/todo/dto/args/status.args.ts -------------------------------------------------------------------------------- /graphql-actions/src/todo/dto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/graphql-actions/src/todo/dto/index.ts -------------------------------------------------------------------------------- /graphql-actions/src/todo/dto/inputs/create-todo.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/graphql-actions/src/todo/dto/inputs/create-todo.input.ts -------------------------------------------------------------------------------- /graphql-actions/src/todo/dto/inputs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/graphql-actions/src/todo/dto/inputs/index.ts -------------------------------------------------------------------------------- /graphql-actions/src/todo/dto/inputs/update-todo.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/graphql-actions/src/todo/dto/inputs/update-todo.input.ts -------------------------------------------------------------------------------- /graphql-actions/src/todo/entity/todo.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/graphql-actions/src/todo/entity/todo.entity.ts -------------------------------------------------------------------------------- /graphql-actions/src/todo/todo.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/graphql-actions/src/todo/todo.module.ts -------------------------------------------------------------------------------- /graphql-actions/src/todo/todo.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/graphql-actions/src/todo/todo.resolver.ts -------------------------------------------------------------------------------- /graphql-actions/src/todo/todo.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/graphql-actions/src/todo/todo.service.ts -------------------------------------------------------------------------------- /graphql-actions/src/todo/types/aggregations.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/graphql-actions/src/todo/types/aggregations.type.ts -------------------------------------------------------------------------------- /graphql-actions/test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/graphql-actions/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /graphql-actions/test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/graphql-actions/test/jest-e2e.json -------------------------------------------------------------------------------- /graphql-actions/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/graphql-actions/tsconfig.build.json -------------------------------------------------------------------------------- /graphql-actions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/graphql-actions/tsconfig.json -------------------------------------------------------------------------------- /graphql-actions/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/graphql-actions/yarn.lock -------------------------------------------------------------------------------- /k8s-teslo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/k8s-teslo/.DS_Store -------------------------------------------------------------------------------- /k8s-teslo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/k8s-teslo/README.md -------------------------------------------------------------------------------- /k8s-teslo/backend-secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/k8s-teslo/backend-secrets.yml -------------------------------------------------------------------------------- /k8s-teslo/backend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/k8s-teslo/backend.yml -------------------------------------------------------------------------------- /k8s-teslo/pg-admin-secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/k8s-teslo/pg-admin-secrets.yml -------------------------------------------------------------------------------- /k8s-teslo/pg-admin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/k8s-teslo/pg-admin.yml -------------------------------------------------------------------------------- /k8s-teslo/postgres-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/k8s-teslo/postgres-config.yml -------------------------------------------------------------------------------- /k8s-teslo/postgres-secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/k8s-teslo/postgres-secrets.yml -------------------------------------------------------------------------------- /k8s-teslo/postgres.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/k8s-teslo/postgres.yml -------------------------------------------------------------------------------- /nest-graphql/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/nest-graphql/.eslintrc.js -------------------------------------------------------------------------------- /nest-graphql/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/nest-graphql/.gitignore -------------------------------------------------------------------------------- /nest-graphql/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/nest-graphql/.prettierrc -------------------------------------------------------------------------------- /nest-graphql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/nest-graphql/README.md -------------------------------------------------------------------------------- /nest-graphql/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/nest-graphql/nest-cli.json -------------------------------------------------------------------------------- /nest-graphql/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/nest-graphql/package.json -------------------------------------------------------------------------------- /nest-graphql/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/nest-graphql/src/app.module.ts -------------------------------------------------------------------------------- /nest-graphql/src/hello-world/hello-world.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/nest-graphql/src/hello-world/hello-world.module.ts -------------------------------------------------------------------------------- /nest-graphql/src/hello-world/hello-world.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/nest-graphql/src/hello-world/hello-world.resolver.ts -------------------------------------------------------------------------------- /nest-graphql/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/nest-graphql/src/main.ts -------------------------------------------------------------------------------- /nest-graphql/src/schema.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/nest-graphql/src/schema.gql -------------------------------------------------------------------------------- /nest-graphql/src/todo/dto/args/status.args.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/nest-graphql/src/todo/dto/args/status.args.ts -------------------------------------------------------------------------------- /nest-graphql/src/todo/dto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/nest-graphql/src/todo/dto/index.ts -------------------------------------------------------------------------------- /nest-graphql/src/todo/dto/inputs/create-todo.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/nest-graphql/src/todo/dto/inputs/create-todo.input.ts -------------------------------------------------------------------------------- /nest-graphql/src/todo/dto/inputs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/nest-graphql/src/todo/dto/inputs/index.ts -------------------------------------------------------------------------------- /nest-graphql/src/todo/dto/inputs/update-todo.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/nest-graphql/src/todo/dto/inputs/update-todo.input.ts -------------------------------------------------------------------------------- /nest-graphql/src/todo/entity/todo.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/nest-graphql/src/todo/entity/todo.entity.ts -------------------------------------------------------------------------------- /nest-graphql/src/todo/todo.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/nest-graphql/src/todo/todo.module.ts -------------------------------------------------------------------------------- /nest-graphql/src/todo/todo.resolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/nest-graphql/src/todo/todo.resolver.ts -------------------------------------------------------------------------------- /nest-graphql/src/todo/todo.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/nest-graphql/src/todo/todo.service.ts -------------------------------------------------------------------------------- /nest-graphql/src/todo/types/aggregations.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/nest-graphql/src/todo/types/aggregations.type.ts -------------------------------------------------------------------------------- /nest-graphql/test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/nest-graphql/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /nest-graphql/test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/nest-graphql/test/jest-e2e.json -------------------------------------------------------------------------------- /nest-graphql/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/nest-graphql/tsconfig.build.json -------------------------------------------------------------------------------- /nest-graphql/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/nest-graphql/tsconfig.json -------------------------------------------------------------------------------- /nest-graphql/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/nest-graphql/yarn.lock -------------------------------------------------------------------------------- /pokemon-app/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/pokemon-app/.env -------------------------------------------------------------------------------- /pokemon-app/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/pokemon-app/docker-compose.yml -------------------------------------------------------------------------------- /postgres-pgadmin/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/postgres-pgadmin/.DS_Store -------------------------------------------------------------------------------- /postgres-pgadmin/.gitignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | pgadmin/ 4 | postgres/ 5 | 6 | -------------------------------------------------------------------------------- /postgres-pgadmin/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/postgres-pgadmin/docker-compose.yml -------------------------------------------------------------------------------- /react-heroes/.dockerignore: -------------------------------------------------------------------------------- 1 | 2 | 3 | node_modules 4 | .git 5 | dist -------------------------------------------------------------------------------- /react-heroes/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/.gitignore -------------------------------------------------------------------------------- /react-heroes/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/Dockerfile -------------------------------------------------------------------------------- /react-heroes/assets/heroes/dc-arrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/assets/heroes/dc-arrow.jpg -------------------------------------------------------------------------------- /react-heroes/assets/heroes/dc-batman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/assets/heroes/dc-batman.jpg -------------------------------------------------------------------------------- /react-heroes/assets/heroes/dc-black.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/assets/heroes/dc-black.jpg -------------------------------------------------------------------------------- /react-heroes/assets/heroes/dc-blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/assets/heroes/dc-blue.jpg -------------------------------------------------------------------------------- /react-heroes/assets/heroes/dc-flash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/assets/heroes/dc-flash.jpg -------------------------------------------------------------------------------- /react-heroes/assets/heroes/dc-green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/assets/heroes/dc-green.jpg -------------------------------------------------------------------------------- /react-heroes/assets/heroes/dc-martian.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/assets/heroes/dc-martian.jpg -------------------------------------------------------------------------------- /react-heroes/assets/heroes/dc-robin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/assets/heroes/dc-robin.jpg -------------------------------------------------------------------------------- /react-heroes/assets/heroes/dc-superman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/assets/heroes/dc-superman.jpg -------------------------------------------------------------------------------- /react-heroes/assets/heroes/dc-wonder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/assets/heroes/dc-wonder.jpg -------------------------------------------------------------------------------- /react-heroes/assets/heroes/marvel-captain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/assets/heroes/marvel-captain.jpg -------------------------------------------------------------------------------- /react-heroes/assets/heroes/marvel-cyclops.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/assets/heroes/marvel-cyclops.jpg -------------------------------------------------------------------------------- /react-heroes/assets/heroes/marvel-daredevil.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/assets/heroes/marvel-daredevil.jpg -------------------------------------------------------------------------------- /react-heroes/assets/heroes/marvel-hawkeye.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/assets/heroes/marvel-hawkeye.jpg -------------------------------------------------------------------------------- /react-heroes/assets/heroes/marvel-hulk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/assets/heroes/marvel-hulk.jpg -------------------------------------------------------------------------------- /react-heroes/assets/heroes/marvel-iron.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/assets/heroes/marvel-iron.jpg -------------------------------------------------------------------------------- /react-heroes/assets/heroes/marvel-silver.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/assets/heroes/marvel-silver.jpg -------------------------------------------------------------------------------- /react-heroes/assets/heroes/marvel-spider.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/assets/heroes/marvel-spider.jpg -------------------------------------------------------------------------------- /react-heroes/assets/heroes/marvel-thor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/assets/heroes/marvel-thor.jpg -------------------------------------------------------------------------------- /react-heroes/assets/heroes/marvel-wolverine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/assets/heroes/marvel-wolverine.jpg -------------------------------------------------------------------------------- /react-heroes/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/babel.config.js -------------------------------------------------------------------------------- /react-heroes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/index.html -------------------------------------------------------------------------------- /react-heroes/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/jest.config.js -------------------------------------------------------------------------------- /react-heroes/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/nginx/nginx.conf -------------------------------------------------------------------------------- /react-heroes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/package.json -------------------------------------------------------------------------------- /react-heroes/src/HeroesApp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/src/HeroesApp.jsx -------------------------------------------------------------------------------- /react-heroes/src/auth/context/AuthContext.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/src/auth/context/AuthContext.jsx -------------------------------------------------------------------------------- /react-heroes/src/auth/context/AuthProvider.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/src/auth/context/AuthProvider.jsx -------------------------------------------------------------------------------- /react-heroes/src/auth/context/authReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/src/auth/context/authReducer.js -------------------------------------------------------------------------------- /react-heroes/src/auth/context/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/src/auth/context/index.js -------------------------------------------------------------------------------- /react-heroes/src/auth/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/src/auth/index.js -------------------------------------------------------------------------------- /react-heroes/src/auth/pages/LoginPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/src/auth/pages/LoginPage.jsx -------------------------------------------------------------------------------- /react-heroes/src/auth/pages/index.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | export * from './LoginPage'; -------------------------------------------------------------------------------- /react-heroes/src/auth/types/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/src/auth/types/types.js -------------------------------------------------------------------------------- /react-heroes/src/heroes/components/HeroCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/src/heroes/components/HeroCard.jsx -------------------------------------------------------------------------------- /react-heroes/src/heroes/components/HeroList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/src/heroes/components/HeroList.jsx -------------------------------------------------------------------------------- /react-heroes/src/heroes/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/src/heroes/components/index.js -------------------------------------------------------------------------------- /react-heroes/src/heroes/data/heroes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/src/heroes/data/heroes.js -------------------------------------------------------------------------------- /react-heroes/src/heroes/helpers/getHeroById.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/src/heroes/helpers/getHeroById.js -------------------------------------------------------------------------------- /react-heroes/src/heroes/helpers/getHeroesByName.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/src/heroes/helpers/getHeroesByName.js -------------------------------------------------------------------------------- /react-heroes/src/heroes/helpers/getHeroesByPublisher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/src/heroes/helpers/getHeroesByPublisher.js -------------------------------------------------------------------------------- /react-heroes/src/heroes/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/src/heroes/helpers/index.js -------------------------------------------------------------------------------- /react-heroes/src/heroes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/src/heroes/index.js -------------------------------------------------------------------------------- /react-heroes/src/heroes/pages/DcPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/src/heroes/pages/DcPage.jsx -------------------------------------------------------------------------------- /react-heroes/src/heroes/pages/HeroPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/src/heroes/pages/HeroPage.jsx -------------------------------------------------------------------------------- /react-heroes/src/heroes/pages/MarvelPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/src/heroes/pages/MarvelPage.jsx -------------------------------------------------------------------------------- /react-heroes/src/heroes/pages/SearchPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/src/heroes/pages/SearchPage.jsx -------------------------------------------------------------------------------- /react-heroes/src/heroes/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/src/heroes/pages/index.js -------------------------------------------------------------------------------- /react-heroes/src/heroes/routes/HeroesRoutes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/src/heroes/routes/HeroesRoutes.jsx -------------------------------------------------------------------------------- /react-heroes/src/hooks/useForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/src/hooks/useForm.js -------------------------------------------------------------------------------- /react-heroes/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/src/main.jsx -------------------------------------------------------------------------------- /react-heroes/src/router/AppRouter.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/src/router/AppRouter.jsx -------------------------------------------------------------------------------- /react-heroes/src/router/PrivateRoute.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/src/router/PrivateRoute.jsx -------------------------------------------------------------------------------- /react-heroes/src/router/PublicRoute.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/src/router/PublicRoute.jsx -------------------------------------------------------------------------------- /react-heroes/src/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /react-heroes/src/ui/components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/src/ui/components/Navbar.jsx -------------------------------------------------------------------------------- /react-heroes/src/ui/components/index.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | export * from './Navbar'; -------------------------------------------------------------------------------- /react-heroes/src/ui/index.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | export * from './components'; -------------------------------------------------------------------------------- /react-heroes/tests/auth/context/authReducer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/tests/auth/context/authReducer.test.js -------------------------------------------------------------------------------- /react-heroes/tests/auth/types/types.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/tests/auth/types/types.test.js -------------------------------------------------------------------------------- /react-heroes/tests/heroes/pages/SearchPage.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/tests/heroes/pages/SearchPage.test.jsx -------------------------------------------------------------------------------- /react-heroes/tests/heroes/pages/__snapshots__/SearchPage.test.jsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/tests/heroes/pages/__snapshots__/SearchPage.test.jsx.snap -------------------------------------------------------------------------------- /react-heroes/tests/router/AppRouter.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/tests/router/AppRouter.test.jsx -------------------------------------------------------------------------------- /react-heroes/tests/router/PrivateRoute.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/tests/router/PrivateRoute.test.jsx -------------------------------------------------------------------------------- /react-heroes/tests/router/PublicRoute.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/tests/router/PublicRoute.test.jsx -------------------------------------------------------------------------------- /react-heroes/tests/ui/components/Navbar.test.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/tests/ui/components/Navbar.test.jsx -------------------------------------------------------------------------------- /react-heroes/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/vite.config.js -------------------------------------------------------------------------------- /react-heroes/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/react-heroes/yarn.lock -------------------------------------------------------------------------------- /teslo-shop/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/.dockerignore -------------------------------------------------------------------------------- /teslo-shop/.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/.env.template -------------------------------------------------------------------------------- /teslo-shop/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/.eslintrc.js -------------------------------------------------------------------------------- /teslo-shop/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/.gitignore -------------------------------------------------------------------------------- /teslo-shop/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/.prettierrc -------------------------------------------------------------------------------- /teslo-shop/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/.vscode/tasks.json -------------------------------------------------------------------------------- /teslo-shop/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/Dockerfile -------------------------------------------------------------------------------- /teslo-shop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/README.md -------------------------------------------------------------------------------- /teslo-shop/docker-compose.prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/docker-compose.prod.yml -------------------------------------------------------------------------------- /teslo-shop/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/docker-compose.yml -------------------------------------------------------------------------------- /teslo-shop/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/nest-cli.json -------------------------------------------------------------------------------- /teslo-shop/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/package.json -------------------------------------------------------------------------------- /teslo-shop/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/app.module.ts -------------------------------------------------------------------------------- /teslo-shop/src/auth/auth.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/auth/auth.controller.ts -------------------------------------------------------------------------------- /teslo-shop/src/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/auth/auth.module.ts -------------------------------------------------------------------------------- /teslo-shop/src/auth/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/auth/auth.service.ts -------------------------------------------------------------------------------- /teslo-shop/src/auth/decorators/auth.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/auth/decorators/auth.decorator.ts -------------------------------------------------------------------------------- /teslo-shop/src/auth/decorators/get-user.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/auth/decorators/get-user.decorator.ts -------------------------------------------------------------------------------- /teslo-shop/src/auth/decorators/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/auth/decorators/index.ts -------------------------------------------------------------------------------- /teslo-shop/src/auth/decorators/raw-headers.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/auth/decorators/raw-headers.decorator.ts -------------------------------------------------------------------------------- /teslo-shop/src/auth/decorators/role-protected.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/auth/decorators/role-protected.decorator.ts -------------------------------------------------------------------------------- /teslo-shop/src/auth/dto/create-user.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/auth/dto/create-user.dto.ts -------------------------------------------------------------------------------- /teslo-shop/src/auth/dto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/auth/dto/index.ts -------------------------------------------------------------------------------- /teslo-shop/src/auth/dto/login-user.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/auth/dto/login-user.dto.ts -------------------------------------------------------------------------------- /teslo-shop/src/auth/entities/user.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/auth/entities/user.entity.ts -------------------------------------------------------------------------------- /teslo-shop/src/auth/guards/user-role.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/auth/guards/user-role.guard.ts -------------------------------------------------------------------------------- /teslo-shop/src/auth/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/auth/interfaces/index.ts -------------------------------------------------------------------------------- /teslo-shop/src/auth/interfaces/jwt-payload.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/auth/interfaces/jwt-payload.interface.ts -------------------------------------------------------------------------------- /teslo-shop/src/auth/interfaces/valid-roles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/auth/interfaces/valid-roles.ts -------------------------------------------------------------------------------- /teslo-shop/src/auth/strategies/jwt.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/auth/strategies/jwt.strategy.ts -------------------------------------------------------------------------------- /teslo-shop/src/common/common.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/common/common.module.ts -------------------------------------------------------------------------------- /teslo-shop/src/common/dtos/pagination.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/common/dtos/pagination.dto.ts -------------------------------------------------------------------------------- /teslo-shop/src/files/files.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/files/files.controller.ts -------------------------------------------------------------------------------- /teslo-shop/src/files/files.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/files/files.module.ts -------------------------------------------------------------------------------- /teslo-shop/src/files/files.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/files/files.service.ts -------------------------------------------------------------------------------- /teslo-shop/src/files/helpers/fileFilter.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/files/helpers/fileFilter.helper.ts -------------------------------------------------------------------------------- /teslo-shop/src/files/helpers/fileNamer.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/files/helpers/fileNamer.helper.ts -------------------------------------------------------------------------------- /teslo-shop/src/files/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/files/helpers/index.ts -------------------------------------------------------------------------------- /teslo-shop/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/main.ts -------------------------------------------------------------------------------- /teslo-shop/src/messages-ws/dtos/new-message.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/messages-ws/dtos/new-message.dto.ts -------------------------------------------------------------------------------- /teslo-shop/src/messages-ws/messages-ws.gateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/messages-ws/messages-ws.gateway.ts -------------------------------------------------------------------------------- /teslo-shop/src/messages-ws/messages-ws.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/messages-ws/messages-ws.module.ts -------------------------------------------------------------------------------- /teslo-shop/src/messages-ws/messages-ws.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/messages-ws/messages-ws.service.ts -------------------------------------------------------------------------------- /teslo-shop/src/products/dto/create-product.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/products/dto/create-product.dto.ts -------------------------------------------------------------------------------- /teslo-shop/src/products/dto/update-product.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/products/dto/update-product.dto.ts -------------------------------------------------------------------------------- /teslo-shop/src/products/entities/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/products/entities/index.ts -------------------------------------------------------------------------------- /teslo-shop/src/products/entities/product-image.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/products/entities/product-image.entity.ts -------------------------------------------------------------------------------- /teslo-shop/src/products/entities/product.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/products/entities/product.entity.ts -------------------------------------------------------------------------------- /teslo-shop/src/products/products.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/products/products.controller.ts -------------------------------------------------------------------------------- /teslo-shop/src/products/products.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/products/products.module.ts -------------------------------------------------------------------------------- /teslo-shop/src/products/products.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/products/products.service.ts -------------------------------------------------------------------------------- /teslo-shop/src/seed/data/seed-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/seed/data/seed-data.ts -------------------------------------------------------------------------------- /teslo-shop/src/seed/seed.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/seed/seed.controller.ts -------------------------------------------------------------------------------- /teslo-shop/src/seed/seed.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/seed/seed.module.ts -------------------------------------------------------------------------------- /teslo-shop/src/seed/seed.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/src/seed/seed.service.ts -------------------------------------------------------------------------------- /teslo-shop/static/products/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /teslo-shop/static/products/100042301_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/100042301_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/100042301_alt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/100042301_alt.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/100042307_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/100042307_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/100042307_1_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/100042307_1_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/100042307_alt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/100042307_alt.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/100042307_alt_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/100042307_alt_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1473809-00-A_1_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1473809-00-A_1_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1473809-00-A_alt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1473809-00-A_alt.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1473814-00-A_1_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1473814-00-A_1_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1473814-00-A_alt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1473814-00-A_alt.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1473819-00-A_1_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1473819-00-A_1_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1473819-00-A_alt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1473819-00-A_alt.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1473824-00-A_2_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1473824-00-A_2_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1473829-00-A_2_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1473829-00-A_2_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1473834-00-A_2_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1473834-00-A_2_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1506211-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1506211-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1506211-00-A_1_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1506211-00-A_1_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1549268-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1549268-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1549268-00-A_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1549268-00-A_2.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1549275-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1549275-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1549275-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1549275-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1623735-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1623735-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1623735-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1623735-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1623736-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1623736-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1623736-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1623736-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1623739-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1623739-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1623739-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1623739-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1633802-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1633802-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1633802-00-A_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1633802-00-A_2.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1657891-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1657891-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1657891-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1657891-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1657914-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1657914-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1657914-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1657914-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1657915-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1657915-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1657915-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1657915-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1657916-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1657916-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1657916-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1657916-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1657921-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1657921-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1657921-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1657921-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1657931-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1657931-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1657931-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1657931-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1657932-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1657932-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1657932-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1657932-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1657933-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1657933-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1657933-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1657933-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1693862-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1693862-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1693862-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1693862-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1693862-03-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1693862-03-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1693862-03-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1693862-03-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1693867-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1693867-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1693867-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1693867-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1693867-02-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1693867-02-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1693867-02-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1693867-02-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1700280-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1700280-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1700280-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1700280-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1703767-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1703767-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1703767-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1703767-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1715672-00-A_featured.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1715672-00-A_featured.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740051-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740051-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740051-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740051-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740113-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740113-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740113-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740113-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740121-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740121-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740121-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740121-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740140-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740140-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740140-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740140-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740145-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740145-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740145-00-A_2_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740145-00-A_2_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740176-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740176-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740176-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740176-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740211-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740211-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740211-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740211-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740216-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740216-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740216-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740216-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740221-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740221-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740221-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740221-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740226-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740226-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740226-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740226-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740231-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740231-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740231-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740231-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740236-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740236-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740236-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740236-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740245-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740245-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740245-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740245-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740250-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740250-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740250-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740250-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740255-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740255-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740255-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740255-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740260-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740260-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740260-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740260-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740270-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740270-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740270-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740270-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740275-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740275-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740275-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740275-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740280-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740280-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740280-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740280-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740285-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740285-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740285-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740285-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740290-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740290-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740290-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740290-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740406-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740406-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740406-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740406-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740407-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740407-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740407-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740407-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740408-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740408-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740408-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740408-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740409-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740409-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740409-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740409-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740410-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740410-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740410-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740410-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740411-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740411-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740411-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740411-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740413-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740413-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740413-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740413-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740414-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740414-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740414-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740414-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740416-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740416-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740416-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740416-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740417-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740417-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740417-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740417-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740507-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740507-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740507-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740507-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740514-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740514-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740514-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740514-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740521-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740521-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740521-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740521-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740528-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740528-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740528-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740528-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740535-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740535-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1740535-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1740535-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1741111-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1741111-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1741111-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1741111-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1741416-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1741416-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1741416-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1741416-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1741425-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1741425-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1741425-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1741425-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1741441-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1741441-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1741441-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1741441-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1741449-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1741449-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1741449-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1741449-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1741611-00-A_1_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1741611-00-A_1_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1741613-00-A_1_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1741613-00-A_1_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1741615-00-A_1_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1741615-00-A_1_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1741617-00-A_1_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1741617-00-A_1_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1741619-00-A_1_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1741619-00-A_1_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1741621-00-A_1_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1741621-00-A_1_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1742694-00-A_1_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1742694-00-A_1_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1742694-00-A_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1742694-00-A_3.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1742702-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1742702-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/1742702-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/1742702-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/31bef8d9-ef07-4980-8db8-059364d31688.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/31bef8d9-ef07-4980-8db8-059364d31688.png -------------------------------------------------------------------------------- /teslo-shop/static/products/5645680-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/5645680-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/5645680-00-A_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/5645680-00-A_3.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/5645685-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/5645685-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/5645685-00-A_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/5645685-00-A_3.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/7652410-00-A_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/7652410-00-A_0.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/7652410-00-A_1_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/7652410-00-A_1_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/7652421-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/7652421-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/7652421-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/7652421-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/7652426-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/7652426-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/7652426-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/7652426-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/7652432-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/7652432-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/7652432-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/7652432-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/7652453-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/7652453-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/7652453-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/7652453-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/7652459-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/7652459-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/7652459-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/7652459-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/7652465-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/7652465-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/7652465-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/7652465-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/7654393-00-A_2_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/7654393-00-A_2_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/7654393-00-A_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/7654393-00-A_3.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/7654399-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/7654399-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/7654399-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/7654399-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/7654420-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/7654420-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/7654420-00-A_1_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/7654420-00-A_1_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8528833-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8528833-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8528833-00-A_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8528833-00-A_2.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8528839-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8528839-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8528839-00-A_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8528839-00-A_2.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8528845-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8528845-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8528845-00-A_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8528845-00-A_2.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8529100-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8529100-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8529100-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8529100-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8529107-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8529107-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8529107-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8529107-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8529198-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8529198-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8529198-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8529198-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8529205-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8529205-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8529205-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8529205-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8529212-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8529212-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8529212-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8529212-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8529312-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8529312-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8529312-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8529312-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8529318-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8529318-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8529318-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8529318-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8529336-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8529336-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8529336-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8529336-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8529342-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8529342-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8529342-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8529342-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8529348-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8529348-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8529348-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8529348-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8529354-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8529354-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8529354-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8529354-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8529360-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8529360-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8529360-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8529360-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8529366-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8529366-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8529366-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8529366-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8529382-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8529382-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8529382-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8529382-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8529387-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8529387-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8529387-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8529387-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8764600-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8764600-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8764600-00-A_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8764600-00-A_2.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8764613-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8764613-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8764613-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8764613-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8764727-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8764727-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8764727-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8764727-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8764734-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8764734-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8764734-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8764734-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8764741-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8764741-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8764741-00-A_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8764741-00-A_2.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8764754-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8764754-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8764754-00-A_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8764754-00-A_2.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8764760-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8764760-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8764760-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8764760-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8764766-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8764766-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8764766-00-A_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8764766-00-A_2.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8764792-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8764792-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8764792-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8764792-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8764806-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8764806-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8764806-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8764806-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8764813-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8764813-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8764813-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8764813-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8765085-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8765085-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8765085-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8765085-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8765090-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8765090-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8765090-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8765090-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8765095-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8765095-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8765095-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8765095-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8765100-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8765100-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8765100-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8765100-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8765105-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8765105-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8765105-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8765105-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8765110-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8765110-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8765110-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8765110-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8765115-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8765115-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8765115-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8765115-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8765120-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8765120-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8765120-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8765120-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8765125-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8765125-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8765125-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8765125-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8765130-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8765130-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/8765130-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/8765130-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/9877034-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/9877034-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/9877034-00-A_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/9877034-00-A_2.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/9877040-00-A_0_2000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/9877040-00-A_0_2000.jpg -------------------------------------------------------------------------------- /teslo-shop/static/products/9877040-00-A_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/static/products/9877040-00-A_1.jpg -------------------------------------------------------------------------------- /teslo-shop/static/uploads/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /teslo-shop/test/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/test/app.e2e-spec.ts -------------------------------------------------------------------------------- /teslo-shop/test/jest-e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/test/jest-e2e.json -------------------------------------------------------------------------------- /teslo-shop/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/tsconfig.build.json -------------------------------------------------------------------------------- /teslo-shop/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/tsconfig.json -------------------------------------------------------------------------------- /teslo-shop/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-shop/yarn.lock -------------------------------------------------------------------------------- /teslo-testing/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-testing/.env -------------------------------------------------------------------------------- /teslo-testing/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Klerith/docker-ejercicios/HEAD/teslo-testing/docker-compose.yml --------------------------------------------------------------------------------