├── .gitignore ├── call-booking-application ├── Docs │ ├── 1.authenticate-ecr.md │ ├── 2. Steps_to_create_eks_cluster.md │ └── 3. authenticate_eks_cluster.md ├── README.md ├── commands.txt ├── user-api │ ├── Dockerfile │ ├── README.md │ ├── config │ │ └── db.js │ ├── controllers │ │ ├── bookingControllers.js │ │ └── healthControllers.js │ ├── metrics.js │ ├── middlewares │ │ └── errorMiddleware.js │ ├── models │ │ └── bookingModel.js │ ├── package-lock.json │ ├── package.json │ ├── routes │ │ ├── booking.js │ │ ├── health.js │ │ └── index.js │ ├── server.js │ └── utils │ │ ├── mail.js │ │ └── uploadFile.js └── user-ui │ ├── Dockerfile │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ └── src │ ├── App.js │ ├── bookings │ └── CreateBooking.js │ ├── components │ ├── ErrorMessage.js │ └── Loading.js │ ├── config.js │ ├── env.js │ ├── index.js │ ├── layouts │ └── MainScreen.js │ ├── reportWebVitals.js │ ├── services │ ├── booking.js │ └── index.js │ └── svgs │ └── index.js ├── micro-service-starter ├── docker_code │ ├── README.md │ ├── cart-microservice-nodejs │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── index.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── src │ │ │ └── routes │ │ │ ├── cart │ │ │ └── cart.js │ │ │ └── index.js │ ├── docker-compose.yaml │ ├── offers-microservice-spring-boot │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── microservices │ │ │ │ │ └── offers │ │ │ │ │ ├── OffersApplication.java │ │ │ │ │ └── controllers │ │ │ │ │ └── OffersController.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── microservices │ │ │ └── offers │ │ │ └── OffersApplicationTests.java │ ├── shoes-microservice-spring-boot │ │ ├── .gitignore │ │ ├── .mvn │ │ │ └── wrapper │ │ │ │ ├── MavenWrapperDownloader.java │ │ │ │ ├── maven-wrapper.jar │ │ │ │ └── maven-wrapper.properties │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── microservices │ │ │ │ │ └── shoes │ │ │ │ │ ├── ShoesApplication.java │ │ │ │ │ └── controllers │ │ │ │ │ └── ShoeController.java │ │ │ └── resources │ │ │ │ └── application.properties │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── microservices │ │ │ └── shoes │ │ │ └── ShoesApplicationTests.java │ ├── ui-web-app-reactjs │ │ ├── .gitignore │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── after-compile-plugin.js │ │ ├── dist │ │ │ ├── favicon.ico │ │ │ └── robots.txt │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── postcss.config.js │ │ ├── src │ │ │ ├── components │ │ │ │ └── App.jsx │ │ │ ├── entry.jsx │ │ │ ├── helpers │ │ │ │ └── index.js │ │ │ ├── index.ejs │ │ │ └── styles │ │ │ │ ├── _global.scss │ │ │ │ └── styles.scss │ │ └── webpack.config.js │ ├── wishlist-microservice-python │ │ ├── Dockerfile │ │ ├── README.md │ │ └── index.py │ └── zuul-api-gateway │ │ ├── .gitignore │ │ ├── .mvn │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ │ ├── Dockerfile │ │ ├── README.md │ │ ├── mvnw │ │ ├── mvnw.cmd │ │ ├── pom.xml │ │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── apigateway │ │ │ │ └── zuul │ │ │ │ └── ZuulApplication.java │ │ └── resources │ │ │ ├── application.properties │ │ │ └── application.yml │ │ └── test │ │ └── java │ │ └── com │ │ └── apigateway │ │ └── zuul │ │ └── ZuulApplicationTests.java └── kubernetes_code │ ├── README.md │ ├── cart-microservice-nodejs │ ├── .gitignore │ ├── README.md │ ├── index.js │ ├── package-lock.json │ ├── package.json │ └── src │ │ └── routes │ │ ├── cart │ │ └── cart.js │ │ └── index.js │ ├── offers-microservice-spring-boot │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── README.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── microservices │ │ │ │ └── offers │ │ │ │ ├── OffersApplication.java │ │ │ │ └── controllers │ │ │ │ └── OffersController.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── microservices │ │ └── offers │ │ └── OffersApplicationTests.java │ ├── shoes-microservice-spring-boot │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── MavenWrapperDownloader.java │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── README.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── microservices │ │ │ │ └── shoes │ │ │ │ ├── ShoesApplication.java │ │ │ │ └── controllers │ │ │ │ └── ShoeController.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── microservices │ │ └── shoes │ │ └── ShoesApplicationTests.java │ ├── ui-web-app-reactjs │ ├── .gitignore │ ├── README.md │ ├── after-compile-plugin.js │ ├── dist │ │ ├── favicon.ico │ │ └── robots.txt │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── server.js │ ├── src │ │ ├── components │ │ │ └── App.jsx │ │ ├── entry.jsx │ │ ├── helpers │ │ │ └── index.js │ │ ├── index.ejs │ │ └── styles │ │ │ ├── _global.scss │ │ │ └── styles.scss │ └── webpack.config.js │ ├── wishlist-microservice-python │ ├── README.md │ └── index.py │ └── zuul-api-gateway │ ├── .gitignore │ ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ ├── maven-wrapper.jar │ │ └── maven-wrapper.properties │ ├── README.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ ├── main │ ├── java │ │ └── com │ │ │ └── apigateway │ │ │ └── zuul │ │ │ └── ZuulApplication.java │ └── resources │ │ ├── application.properties │ │ └── application.yml │ └── test │ └── java │ └── com │ └── apigateway │ └── zuul │ └── ZuulApplicationTests.java ├── sock-shop ├── 00-sock-shop-ns.yaml ├── 01-carts-dep.yaml ├── 02-carts-svc.yml ├── 03-carts-db-dep.yaml ├── 04-carts-db-svc.yaml ├── 05-catalogue-dep.yaml ├── 06-catalogue-svc.yaml ├── 07-catalogue-db-dep.yaml ├── 08-catalogue-db-svc.yaml ├── 09-front-end-dep.yaml ├── 10-front-end-svc.yaml ├── 11-orders-dep.yaml ├── 12-orders-svc.yaml ├── 13-orders-db-dep.yaml ├── 14-orders-db-svc.yaml ├── 15-payment-dep.yaml ├── 16-payment-svc.yaml ├── 17-queue-master-dep.yaml ├── 18-queue-master-svc.yaml ├── 19-rabbitmq-dep.yaml ├── 20-rabbitmq-svc.yaml ├── 21-session-db-dep.yaml ├── 22-session-db-svc.yaml ├── 23-shipping-dep.yaml ├── 24-shipping-svc.yaml ├── 25-user-dep.yaml ├── 26-user-svc.yaml ├── 27-user-db-dep.yaml └── 28-user-db-svc.yaml └── voting-app └── source-code ├── result ├── .dockerignore ├── Dockerfile ├── dotnet │ ├── Dockerfile │ ├── Dockerfile.1809 │ └── Result │ │ ├── Data │ │ ├── IResultData.cs │ │ └── MySqlResultData.cs │ │ ├── Hubs │ │ └── ResultsHub.cs │ │ ├── Models │ │ └── ResultsModel.cs │ │ ├── Pages │ │ ├── Index.cshtml │ │ └── Index.cshtml.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Result.csproj │ │ ├── Startup.cs │ │ ├── Timers │ │ └── PublishResultsTimer.cs │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── libman.json │ │ └── wwwroot │ │ ├── css │ │ ├── site.css │ │ └── site.min.css │ │ ├── js │ │ └── results.js │ │ └── lib │ │ └── signalr │ │ └── dist │ │ └── browser │ │ ├── signalr.js │ │ └── signalr.min.js ├── package-lock.json ├── package.json ├── server.js ├── tests │ ├── Dockerfile │ ├── render.js │ └── tests.sh └── views │ ├── angular.min.js │ ├── app.js │ ├── index.html │ ├── socket.io.js │ └── stylesheets │ └── style.css ├── vote ├── Dockerfile ├── app.py ├── dotnet │ ├── Dockerfile │ ├── Dockerfile.1809 │ └── Vote │ │ ├── Messaging │ │ ├── IMessageQueue.cs │ │ ├── MessageHelper.cs │ │ ├── MessageQueue.cs │ │ └── Messages │ │ │ ├── Events │ │ │ └── VoteCastEvent.cs │ │ │ └── Message.cs │ │ ├── Pages │ │ ├── Index.cshtml │ │ └── Index.cshtml.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── Startup.cs │ │ ├── Vote.csproj │ │ ├── Vote.sln │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ └── wwwroot │ │ ├── css │ │ ├── site.css │ │ └── site.min.css │ │ └── js │ │ └── jquery-1.11.1-min.js ├── requirements.txt ├── static │ └── stylesheets │ │ └── style.css └── templates │ └── index.html └── worker ├── .classpath ├── .project ├── Dockerfile ├── Dockerfile.j ├── dotnet ├── Dockerfile ├── Dockerfile.1809 └── Worker │ ├── Data │ ├── IVoteData.cs │ └── MySqlVoteData.cs │ ├── Entities │ ├── Vote.cs │ └── VoteContext.cs │ ├── Messaging │ ├── IMessageQueue.cs │ ├── MessageHelper.cs │ ├── MessageQueue.cs │ └── Messages │ │ ├── Events │ │ └── VoteCastEvent.cs │ │ └── Message.cs │ ├── Program.cs │ ├── Worker.csproj │ ├── Workers │ └── QueueWorker.cs │ └── appsettings.json ├── pom.xml └── src ├── Worker ├── Program.cs └── Worker.csproj └── main └── java └── worker └── Worker.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/.gitignore -------------------------------------------------------------------------------- /call-booking-application/Docs/1.authenticate-ecr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/Docs/1.authenticate-ecr.md -------------------------------------------------------------------------------- /call-booking-application/Docs/2. Steps_to_create_eks_cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/Docs/2. Steps_to_create_eks_cluster.md -------------------------------------------------------------------------------- /call-booking-application/Docs/3. authenticate_eks_cluster.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/Docs/3. authenticate_eks_cluster.md -------------------------------------------------------------------------------- /call-booking-application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/README.md -------------------------------------------------------------------------------- /call-booking-application/commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/commands.txt -------------------------------------------------------------------------------- /call-booking-application/user-api/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-api/Dockerfile -------------------------------------------------------------------------------- /call-booking-application/user-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-api/README.md -------------------------------------------------------------------------------- /call-booking-application/user-api/config/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-api/config/db.js -------------------------------------------------------------------------------- /call-booking-application/user-api/controllers/bookingControllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-api/controllers/bookingControllers.js -------------------------------------------------------------------------------- /call-booking-application/user-api/controllers/healthControllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-api/controllers/healthControllers.js -------------------------------------------------------------------------------- /call-booking-application/user-api/metrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-api/metrics.js -------------------------------------------------------------------------------- /call-booking-application/user-api/middlewares/errorMiddleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-api/middlewares/errorMiddleware.js -------------------------------------------------------------------------------- /call-booking-application/user-api/models/bookingModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-api/models/bookingModel.js -------------------------------------------------------------------------------- /call-booking-application/user-api/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-api/package-lock.json -------------------------------------------------------------------------------- /call-booking-application/user-api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-api/package.json -------------------------------------------------------------------------------- /call-booking-application/user-api/routes/booking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-api/routes/booking.js -------------------------------------------------------------------------------- /call-booking-application/user-api/routes/health.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-api/routes/health.js -------------------------------------------------------------------------------- /call-booking-application/user-api/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-api/routes/index.js -------------------------------------------------------------------------------- /call-booking-application/user-api/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-api/server.js -------------------------------------------------------------------------------- /call-booking-application/user-api/utils/mail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-api/utils/mail.js -------------------------------------------------------------------------------- /call-booking-application/user-api/utils/uploadFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-api/utils/uploadFile.js -------------------------------------------------------------------------------- /call-booking-application/user-ui/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-ui/Dockerfile -------------------------------------------------------------------------------- /call-booking-application/user-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-ui/README.md -------------------------------------------------------------------------------- /call-booking-application/user-ui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-ui/package-lock.json -------------------------------------------------------------------------------- /call-booking-application/user-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-ui/package.json -------------------------------------------------------------------------------- /call-booking-application/user-ui/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-ui/public/favicon.ico -------------------------------------------------------------------------------- /call-booking-application/user-ui/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-ui/public/index.html -------------------------------------------------------------------------------- /call-booking-application/user-ui/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-ui/public/logo192.png -------------------------------------------------------------------------------- /call-booking-application/user-ui/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-ui/public/logo512.png -------------------------------------------------------------------------------- /call-booking-application/user-ui/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-ui/public/manifest.json -------------------------------------------------------------------------------- /call-booking-application/user-ui/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-ui/public/robots.txt -------------------------------------------------------------------------------- /call-booking-application/user-ui/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-ui/src/App.js -------------------------------------------------------------------------------- /call-booking-application/user-ui/src/bookings/CreateBooking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-ui/src/bookings/CreateBooking.js -------------------------------------------------------------------------------- /call-booking-application/user-ui/src/components/ErrorMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-ui/src/components/ErrorMessage.js -------------------------------------------------------------------------------- /call-booking-application/user-ui/src/components/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-ui/src/components/Loading.js -------------------------------------------------------------------------------- /call-booking-application/user-ui/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-ui/src/config.js -------------------------------------------------------------------------------- /call-booking-application/user-ui/src/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-ui/src/env.js -------------------------------------------------------------------------------- /call-booking-application/user-ui/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-ui/src/index.js -------------------------------------------------------------------------------- /call-booking-application/user-ui/src/layouts/MainScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-ui/src/layouts/MainScreen.js -------------------------------------------------------------------------------- /call-booking-application/user-ui/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-ui/src/reportWebVitals.js -------------------------------------------------------------------------------- /call-booking-application/user-ui/src/services/booking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-ui/src/services/booking.js -------------------------------------------------------------------------------- /call-booking-application/user-ui/src/services/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-ui/src/services/index.js -------------------------------------------------------------------------------- /call-booking-application/user-ui/src/svgs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/call-booking-application/user-ui/src/svgs/index.js -------------------------------------------------------------------------------- /micro-service-starter/docker_code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/README.md -------------------------------------------------------------------------------- /micro-service-starter/docker_code/cart-microservice-nodejs/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /micro-service-starter/docker_code/cart-microservice-nodejs/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:14 2 | WORKDIR /app 3 | COPY . . 4 | RUN npm install 5 | EXPOSE 1004 6 | CMD ["node","index.js"] -------------------------------------------------------------------------------- /micro-service-starter/docker_code/cart-microservice-nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/cart-microservice-nodejs/README.md -------------------------------------------------------------------------------- /micro-service-starter/docker_code/cart-microservice-nodejs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/cart-microservice-nodejs/index.js -------------------------------------------------------------------------------- /micro-service-starter/docker_code/cart-microservice-nodejs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/cart-microservice-nodejs/package-lock.json -------------------------------------------------------------------------------- /micro-service-starter/docker_code/cart-microservice-nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/cart-microservice-nodejs/package.json -------------------------------------------------------------------------------- /micro-service-starter/docker_code/cart-microservice-nodejs/src/routes/cart/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/cart-microservice-nodejs/src/routes/cart/cart.js -------------------------------------------------------------------------------- /micro-service-starter/docker_code/cart-microservice-nodejs/src/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/cart-microservice-nodejs/src/routes/index.js -------------------------------------------------------------------------------- /micro-service-starter/docker_code/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/docker-compose.yaml -------------------------------------------------------------------------------- /micro-service-starter/docker_code/offers-microservice-spring-boot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/offers-microservice-spring-boot/.gitignore -------------------------------------------------------------------------------- /micro-service-starter/docker_code/offers-microservice-spring-boot/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/offers-microservice-spring-boot/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /micro-service-starter/docker_code/offers-microservice-spring-boot/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/offers-microservice-spring-boot/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /micro-service-starter/docker_code/offers-microservice-spring-boot/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/offers-microservice-spring-boot/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /micro-service-starter/docker_code/offers-microservice-spring-boot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/offers-microservice-spring-boot/Dockerfile -------------------------------------------------------------------------------- /micro-service-starter/docker_code/offers-microservice-spring-boot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/offers-microservice-spring-boot/README.md -------------------------------------------------------------------------------- /micro-service-starter/docker_code/offers-microservice-spring-boot/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/offers-microservice-spring-boot/mvnw -------------------------------------------------------------------------------- /micro-service-starter/docker_code/offers-microservice-spring-boot/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/offers-microservice-spring-boot/mvnw.cmd -------------------------------------------------------------------------------- /micro-service-starter/docker_code/offers-microservice-spring-boot/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/offers-microservice-spring-boot/pom.xml -------------------------------------------------------------------------------- /micro-service-starter/docker_code/offers-microservice-spring-boot/src/main/java/com/microservices/offers/OffersApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/offers-microservice-spring-boot/src/main/java/com/microservices/offers/OffersApplication.java -------------------------------------------------------------------------------- /micro-service-starter/docker_code/offers-microservice-spring-boot/src/main/java/com/microservices/offers/controllers/OffersController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/offers-microservice-spring-boot/src/main/java/com/microservices/offers/controllers/OffersController.java -------------------------------------------------------------------------------- /micro-service-starter/docker_code/offers-microservice-spring-boot/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/offers-microservice-spring-boot/src/main/resources/application.properties -------------------------------------------------------------------------------- /micro-service-starter/docker_code/offers-microservice-spring-boot/src/test/java/com/microservices/offers/OffersApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/offers-microservice-spring-boot/src/test/java/com/microservices/offers/OffersApplicationTests.java -------------------------------------------------------------------------------- /micro-service-starter/docker_code/shoes-microservice-spring-boot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/shoes-microservice-spring-boot/.gitignore -------------------------------------------------------------------------------- /micro-service-starter/docker_code/shoes-microservice-spring-boot/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/shoes-microservice-spring-boot/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /micro-service-starter/docker_code/shoes-microservice-spring-boot/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/shoes-microservice-spring-boot/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /micro-service-starter/docker_code/shoes-microservice-spring-boot/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/shoes-microservice-spring-boot/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /micro-service-starter/docker_code/shoes-microservice-spring-boot/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/shoes-microservice-spring-boot/Dockerfile -------------------------------------------------------------------------------- /micro-service-starter/docker_code/shoes-microservice-spring-boot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/shoes-microservice-spring-boot/README.md -------------------------------------------------------------------------------- /micro-service-starter/docker_code/shoes-microservice-spring-boot/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/shoes-microservice-spring-boot/mvnw -------------------------------------------------------------------------------- /micro-service-starter/docker_code/shoes-microservice-spring-boot/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/shoes-microservice-spring-boot/mvnw.cmd -------------------------------------------------------------------------------- /micro-service-starter/docker_code/shoes-microservice-spring-boot/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/shoes-microservice-spring-boot/pom.xml -------------------------------------------------------------------------------- /micro-service-starter/docker_code/shoes-microservice-spring-boot/src/main/java/com/microservices/shoes/ShoesApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/shoes-microservice-spring-boot/src/main/java/com/microservices/shoes/ShoesApplication.java -------------------------------------------------------------------------------- /micro-service-starter/docker_code/shoes-microservice-spring-boot/src/main/java/com/microservices/shoes/controllers/ShoeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/shoes-microservice-spring-boot/src/main/java/com/microservices/shoes/controllers/ShoeController.java -------------------------------------------------------------------------------- /micro-service-starter/docker_code/shoes-microservice-spring-boot/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/shoes-microservice-spring-boot/src/main/resources/application.properties -------------------------------------------------------------------------------- /micro-service-starter/docker_code/shoes-microservice-spring-boot/src/test/java/com/microservices/shoes/ShoesApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/shoes-microservice-spring-boot/src/test/java/com/microservices/shoes/ShoesApplicationTests.java -------------------------------------------------------------------------------- /micro-service-starter/docker_code/ui-web-app-reactjs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/ui-web-app-reactjs/.gitignore -------------------------------------------------------------------------------- /micro-service-starter/docker_code/ui-web-app-reactjs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/ui-web-app-reactjs/Dockerfile -------------------------------------------------------------------------------- /micro-service-starter/docker_code/ui-web-app-reactjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/ui-web-app-reactjs/README.md -------------------------------------------------------------------------------- /micro-service-starter/docker_code/ui-web-app-reactjs/after-compile-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/ui-web-app-reactjs/after-compile-plugin.js -------------------------------------------------------------------------------- /micro-service-starter/docker_code/ui-web-app-reactjs/dist/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/ui-web-app-reactjs/dist/favicon.ico -------------------------------------------------------------------------------- /micro-service-starter/docker_code/ui-web-app-reactjs/dist/robots.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /micro-service-starter/docker_code/ui-web-app-reactjs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/ui-web-app-reactjs/package-lock.json -------------------------------------------------------------------------------- /micro-service-starter/docker_code/ui-web-app-reactjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/ui-web-app-reactjs/package.json -------------------------------------------------------------------------------- /micro-service-starter/docker_code/ui-web-app-reactjs/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/ui-web-app-reactjs/postcss.config.js -------------------------------------------------------------------------------- /micro-service-starter/docker_code/ui-web-app-reactjs/src/components/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/ui-web-app-reactjs/src/components/App.jsx -------------------------------------------------------------------------------- /micro-service-starter/docker_code/ui-web-app-reactjs/src/entry.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/ui-web-app-reactjs/src/entry.jsx -------------------------------------------------------------------------------- /micro-service-starter/docker_code/ui-web-app-reactjs/src/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/ui-web-app-reactjs/src/helpers/index.js -------------------------------------------------------------------------------- /micro-service-starter/docker_code/ui-web-app-reactjs/src/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/ui-web-app-reactjs/src/index.ejs -------------------------------------------------------------------------------- /micro-service-starter/docker_code/ui-web-app-reactjs/src/styles/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/ui-web-app-reactjs/src/styles/_global.scss -------------------------------------------------------------------------------- /micro-service-starter/docker_code/ui-web-app-reactjs/src/styles/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/ui-web-app-reactjs/src/styles/styles.scss -------------------------------------------------------------------------------- /micro-service-starter/docker_code/ui-web-app-reactjs/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/ui-web-app-reactjs/webpack.config.js -------------------------------------------------------------------------------- /micro-service-starter/docker_code/wishlist-microservice-python/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/wishlist-microservice-python/Dockerfile -------------------------------------------------------------------------------- /micro-service-starter/docker_code/wishlist-microservice-python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/wishlist-microservice-python/README.md -------------------------------------------------------------------------------- /micro-service-starter/docker_code/wishlist-microservice-python/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/wishlist-microservice-python/index.py -------------------------------------------------------------------------------- /micro-service-starter/docker_code/zuul-api-gateway/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/zuul-api-gateway/.gitignore -------------------------------------------------------------------------------- /micro-service-starter/docker_code/zuul-api-gateway/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/zuul-api-gateway/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /micro-service-starter/docker_code/zuul-api-gateway/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/zuul-api-gateway/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /micro-service-starter/docker_code/zuul-api-gateway/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/zuul-api-gateway/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /micro-service-starter/docker_code/zuul-api-gateway/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/zuul-api-gateway/Dockerfile -------------------------------------------------------------------------------- /micro-service-starter/docker_code/zuul-api-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/zuul-api-gateway/README.md -------------------------------------------------------------------------------- /micro-service-starter/docker_code/zuul-api-gateway/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/zuul-api-gateway/mvnw -------------------------------------------------------------------------------- /micro-service-starter/docker_code/zuul-api-gateway/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/zuul-api-gateway/mvnw.cmd -------------------------------------------------------------------------------- /micro-service-starter/docker_code/zuul-api-gateway/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/zuul-api-gateway/pom.xml -------------------------------------------------------------------------------- /micro-service-starter/docker_code/zuul-api-gateway/src/main/java/com/apigateway/zuul/ZuulApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/zuul-api-gateway/src/main/java/com/apigateway/zuul/ZuulApplication.java -------------------------------------------------------------------------------- /micro-service-starter/docker_code/zuul-api-gateway/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /micro-service-starter/docker_code/zuul-api-gateway/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/zuul-api-gateway/src/main/resources/application.yml -------------------------------------------------------------------------------- /micro-service-starter/docker_code/zuul-api-gateway/src/test/java/com/apigateway/zuul/ZuulApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/docker_code/zuul-api-gateway/src/test/java/com/apigateway/zuul/ZuulApplicationTests.java -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/README.md -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/cart-microservice-nodejs/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/cart-microservice-nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/cart-microservice-nodejs/README.md -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/cart-microservice-nodejs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/cart-microservice-nodejs/index.js -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/cart-microservice-nodejs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/cart-microservice-nodejs/package-lock.json -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/cart-microservice-nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/cart-microservice-nodejs/package.json -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/cart-microservice-nodejs/src/routes/cart/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/cart-microservice-nodejs/src/routes/cart/cart.js -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/cart-microservice-nodejs/src/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/cart-microservice-nodejs/src/routes/index.js -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/offers-microservice-spring-boot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/offers-microservice-spring-boot/.gitignore -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/offers-microservice-spring-boot/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/offers-microservice-spring-boot/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/offers-microservice-spring-boot/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/offers-microservice-spring-boot/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/offers-microservice-spring-boot/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/offers-microservice-spring-boot/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/offers-microservice-spring-boot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/offers-microservice-spring-boot/README.md -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/offers-microservice-spring-boot/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/offers-microservice-spring-boot/mvnw -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/offers-microservice-spring-boot/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/offers-microservice-spring-boot/mvnw.cmd -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/offers-microservice-spring-boot/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/offers-microservice-spring-boot/pom.xml -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/offers-microservice-spring-boot/src/main/java/com/microservices/offers/OffersApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/offers-microservice-spring-boot/src/main/java/com/microservices/offers/OffersApplication.java -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/offers-microservice-spring-boot/src/main/java/com/microservices/offers/controllers/OffersController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/offers-microservice-spring-boot/src/main/java/com/microservices/offers/controllers/OffersController.java -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/offers-microservice-spring-boot/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/offers-microservice-spring-boot/src/main/resources/application.properties -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/offers-microservice-spring-boot/src/test/java/com/microservices/offers/OffersApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/offers-microservice-spring-boot/src/test/java/com/microservices/offers/OffersApplicationTests.java -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/shoes-microservice-spring-boot/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/shoes-microservice-spring-boot/.gitignore -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/shoes-microservice-spring-boot/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/shoes-microservice-spring-boot/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/shoes-microservice-spring-boot/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/shoes-microservice-spring-boot/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/shoes-microservice-spring-boot/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/shoes-microservice-spring-boot/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/shoes-microservice-spring-boot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/shoes-microservice-spring-boot/README.md -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/shoes-microservice-spring-boot/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/shoes-microservice-spring-boot/mvnw -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/shoes-microservice-spring-boot/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/shoes-microservice-spring-boot/mvnw.cmd -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/shoes-microservice-spring-boot/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/shoes-microservice-spring-boot/pom.xml -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/shoes-microservice-spring-boot/src/main/java/com/microservices/shoes/ShoesApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/shoes-microservice-spring-boot/src/main/java/com/microservices/shoes/ShoesApplication.java -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/shoes-microservice-spring-boot/src/main/java/com/microservices/shoes/controllers/ShoeController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/shoes-microservice-spring-boot/src/main/java/com/microservices/shoes/controllers/ShoeController.java -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/shoes-microservice-spring-boot/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/shoes-microservice-spring-boot/src/main/resources/application.properties -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/shoes-microservice-spring-boot/src/test/java/com/microservices/shoes/ShoesApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/shoes-microservice-spring-boot/src/test/java/com/microservices/shoes/ShoesApplicationTests.java -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/ui-web-app-reactjs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/ui-web-app-reactjs/.gitignore -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/ui-web-app-reactjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/ui-web-app-reactjs/README.md -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/ui-web-app-reactjs/after-compile-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/ui-web-app-reactjs/after-compile-plugin.js -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/ui-web-app-reactjs/dist/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/ui-web-app-reactjs/dist/favicon.ico -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/ui-web-app-reactjs/dist/robots.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/ui-web-app-reactjs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/ui-web-app-reactjs/package-lock.json -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/ui-web-app-reactjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/ui-web-app-reactjs/package.json -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/ui-web-app-reactjs/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/ui-web-app-reactjs/postcss.config.js -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/ui-web-app-reactjs/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/ui-web-app-reactjs/server.js -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/ui-web-app-reactjs/src/components/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/ui-web-app-reactjs/src/components/App.jsx -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/ui-web-app-reactjs/src/entry.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/ui-web-app-reactjs/src/entry.jsx -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/ui-web-app-reactjs/src/helpers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/ui-web-app-reactjs/src/helpers/index.js -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/ui-web-app-reactjs/src/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/ui-web-app-reactjs/src/index.ejs -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/ui-web-app-reactjs/src/styles/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/ui-web-app-reactjs/src/styles/_global.scss -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/ui-web-app-reactjs/src/styles/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/ui-web-app-reactjs/src/styles/styles.scss -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/ui-web-app-reactjs/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/ui-web-app-reactjs/webpack.config.js -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/wishlist-microservice-python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/wishlist-microservice-python/README.md -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/wishlist-microservice-python/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/wishlist-microservice-python/index.py -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/zuul-api-gateway/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/zuul-api-gateway/.gitignore -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/zuul-api-gateway/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/zuul-api-gateway/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/zuul-api-gateway/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/zuul-api-gateway/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/zuul-api-gateway/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/zuul-api-gateway/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/zuul-api-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/zuul-api-gateway/README.md -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/zuul-api-gateway/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/zuul-api-gateway/mvnw -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/zuul-api-gateway/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/zuul-api-gateway/mvnw.cmd -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/zuul-api-gateway/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/zuul-api-gateway/pom.xml -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/zuul-api-gateway/src/main/java/com/apigateway/zuul/ZuulApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/zuul-api-gateway/src/main/java/com/apigateway/zuul/ZuulApplication.java -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/zuul-api-gateway/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/zuul-api-gateway/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/zuul-api-gateway/src/main/resources/application.yml -------------------------------------------------------------------------------- /micro-service-starter/kubernetes_code/zuul-api-gateway/src/test/java/com/apigateway/zuul/ZuulApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/micro-service-starter/kubernetes_code/zuul-api-gateway/src/test/java/com/apigateway/zuul/ZuulApplicationTests.java -------------------------------------------------------------------------------- /sock-shop/00-sock-shop-ns.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | apiVersion: v1 3 | kind: Namespace 4 | metadata: 5 | name: sock-shop 6 | -------------------------------------------------------------------------------- /sock-shop/01-carts-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/sock-shop/01-carts-dep.yaml -------------------------------------------------------------------------------- /sock-shop/02-carts-svc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/sock-shop/02-carts-svc.yml -------------------------------------------------------------------------------- /sock-shop/03-carts-db-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/sock-shop/03-carts-db-dep.yaml -------------------------------------------------------------------------------- /sock-shop/04-carts-db-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/sock-shop/04-carts-db-svc.yaml -------------------------------------------------------------------------------- /sock-shop/05-catalogue-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/sock-shop/05-catalogue-dep.yaml -------------------------------------------------------------------------------- /sock-shop/06-catalogue-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/sock-shop/06-catalogue-svc.yaml -------------------------------------------------------------------------------- /sock-shop/07-catalogue-db-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/sock-shop/07-catalogue-db-dep.yaml -------------------------------------------------------------------------------- /sock-shop/08-catalogue-db-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/sock-shop/08-catalogue-db-svc.yaml -------------------------------------------------------------------------------- /sock-shop/09-front-end-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/sock-shop/09-front-end-dep.yaml -------------------------------------------------------------------------------- /sock-shop/10-front-end-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/sock-shop/10-front-end-svc.yaml -------------------------------------------------------------------------------- /sock-shop/11-orders-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/sock-shop/11-orders-dep.yaml -------------------------------------------------------------------------------- /sock-shop/12-orders-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/sock-shop/12-orders-svc.yaml -------------------------------------------------------------------------------- /sock-shop/13-orders-db-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/sock-shop/13-orders-db-dep.yaml -------------------------------------------------------------------------------- /sock-shop/14-orders-db-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/sock-shop/14-orders-db-svc.yaml -------------------------------------------------------------------------------- /sock-shop/15-payment-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/sock-shop/15-payment-dep.yaml -------------------------------------------------------------------------------- /sock-shop/16-payment-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/sock-shop/16-payment-svc.yaml -------------------------------------------------------------------------------- /sock-shop/17-queue-master-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/sock-shop/17-queue-master-dep.yaml -------------------------------------------------------------------------------- /sock-shop/18-queue-master-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/sock-shop/18-queue-master-svc.yaml -------------------------------------------------------------------------------- /sock-shop/19-rabbitmq-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/sock-shop/19-rabbitmq-dep.yaml -------------------------------------------------------------------------------- /sock-shop/20-rabbitmq-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/sock-shop/20-rabbitmq-svc.yaml -------------------------------------------------------------------------------- /sock-shop/21-session-db-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/sock-shop/21-session-db-dep.yaml -------------------------------------------------------------------------------- /sock-shop/22-session-db-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/sock-shop/22-session-db-svc.yaml -------------------------------------------------------------------------------- /sock-shop/23-shipping-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/sock-shop/23-shipping-dep.yaml -------------------------------------------------------------------------------- /sock-shop/24-shipping-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/sock-shop/24-shipping-svc.yaml -------------------------------------------------------------------------------- /sock-shop/25-user-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/sock-shop/25-user-dep.yaml -------------------------------------------------------------------------------- /sock-shop/26-user-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/sock-shop/26-user-svc.yaml -------------------------------------------------------------------------------- /sock-shop/27-user-db-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/sock-shop/27-user-db-dep.yaml -------------------------------------------------------------------------------- /sock-shop/28-user-db-svc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/sock-shop/28-user-db-svc.yaml -------------------------------------------------------------------------------- /voting-app/source-code/result/.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /voting-app/source-code/result/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/result/Dockerfile -------------------------------------------------------------------------------- /voting-app/source-code/result/dotnet/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/result/dotnet/Dockerfile -------------------------------------------------------------------------------- /voting-app/source-code/result/dotnet/Dockerfile.1809: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/result/dotnet/Dockerfile.1809 -------------------------------------------------------------------------------- /voting-app/source-code/result/dotnet/Result/Data/IResultData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/result/dotnet/Result/Data/IResultData.cs -------------------------------------------------------------------------------- /voting-app/source-code/result/dotnet/Result/Data/MySqlResultData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/result/dotnet/Result/Data/MySqlResultData.cs -------------------------------------------------------------------------------- /voting-app/source-code/result/dotnet/Result/Hubs/ResultsHub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/result/dotnet/Result/Hubs/ResultsHub.cs -------------------------------------------------------------------------------- /voting-app/source-code/result/dotnet/Result/Models/ResultsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/result/dotnet/Result/Models/ResultsModel.cs -------------------------------------------------------------------------------- /voting-app/source-code/result/dotnet/Result/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/result/dotnet/Result/Pages/Index.cshtml -------------------------------------------------------------------------------- /voting-app/source-code/result/dotnet/Result/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/result/dotnet/Result/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /voting-app/source-code/result/dotnet/Result/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/result/dotnet/Result/Program.cs -------------------------------------------------------------------------------- /voting-app/source-code/result/dotnet/Result/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/result/dotnet/Result/Properties/launchSettings.json -------------------------------------------------------------------------------- /voting-app/source-code/result/dotnet/Result/Result.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/result/dotnet/Result/Result.csproj -------------------------------------------------------------------------------- /voting-app/source-code/result/dotnet/Result/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/result/dotnet/Result/Startup.cs -------------------------------------------------------------------------------- /voting-app/source-code/result/dotnet/Result/Timers/PublishResultsTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/result/dotnet/Result/Timers/PublishResultsTimer.cs -------------------------------------------------------------------------------- /voting-app/source-code/result/dotnet/Result/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/result/dotnet/Result/appsettings.Development.json -------------------------------------------------------------------------------- /voting-app/source-code/result/dotnet/Result/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/result/dotnet/Result/appsettings.json -------------------------------------------------------------------------------- /voting-app/source-code/result/dotnet/Result/libman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/result/dotnet/Result/libman.json -------------------------------------------------------------------------------- /voting-app/source-code/result/dotnet/Result/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/result/dotnet/Result/wwwroot/css/site.css -------------------------------------------------------------------------------- /voting-app/source-code/result/dotnet/Result/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/result/dotnet/Result/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /voting-app/source-code/result/dotnet/Result/wwwroot/js/results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/result/dotnet/Result/wwwroot/js/results.js -------------------------------------------------------------------------------- /voting-app/source-code/result/dotnet/Result/wwwroot/lib/signalr/dist/browser/signalr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/result/dotnet/Result/wwwroot/lib/signalr/dist/browser/signalr.js -------------------------------------------------------------------------------- /voting-app/source-code/result/dotnet/Result/wwwroot/lib/signalr/dist/browser/signalr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/result/dotnet/Result/wwwroot/lib/signalr/dist/browser/signalr.min.js -------------------------------------------------------------------------------- /voting-app/source-code/result/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/result/package-lock.json -------------------------------------------------------------------------------- /voting-app/source-code/result/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/result/package.json -------------------------------------------------------------------------------- /voting-app/source-code/result/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/result/server.js -------------------------------------------------------------------------------- /voting-app/source-code/result/tests/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/result/tests/Dockerfile -------------------------------------------------------------------------------- /voting-app/source-code/result/tests/render.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/result/tests/render.js -------------------------------------------------------------------------------- /voting-app/source-code/result/tests/tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/result/tests/tests.sh -------------------------------------------------------------------------------- /voting-app/source-code/result/views/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/result/views/angular.min.js -------------------------------------------------------------------------------- /voting-app/source-code/result/views/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/result/views/app.js -------------------------------------------------------------------------------- /voting-app/source-code/result/views/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/result/views/index.html -------------------------------------------------------------------------------- /voting-app/source-code/result/views/socket.io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/result/views/socket.io.js -------------------------------------------------------------------------------- /voting-app/source-code/result/views/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/result/views/stylesheets/style.css -------------------------------------------------------------------------------- /voting-app/source-code/vote/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/vote/Dockerfile -------------------------------------------------------------------------------- /voting-app/source-code/vote/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/vote/app.py -------------------------------------------------------------------------------- /voting-app/source-code/vote/dotnet/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/vote/dotnet/Dockerfile -------------------------------------------------------------------------------- /voting-app/source-code/vote/dotnet/Dockerfile.1809: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/vote/dotnet/Dockerfile.1809 -------------------------------------------------------------------------------- /voting-app/source-code/vote/dotnet/Vote/Messaging/IMessageQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/vote/dotnet/Vote/Messaging/IMessageQueue.cs -------------------------------------------------------------------------------- /voting-app/source-code/vote/dotnet/Vote/Messaging/MessageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/vote/dotnet/Vote/Messaging/MessageHelper.cs -------------------------------------------------------------------------------- /voting-app/source-code/vote/dotnet/Vote/Messaging/MessageQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/vote/dotnet/Vote/Messaging/MessageQueue.cs -------------------------------------------------------------------------------- /voting-app/source-code/vote/dotnet/Vote/Messaging/Messages/Events/VoteCastEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/vote/dotnet/Vote/Messaging/Messages/Events/VoteCastEvent.cs -------------------------------------------------------------------------------- /voting-app/source-code/vote/dotnet/Vote/Messaging/Messages/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/vote/dotnet/Vote/Messaging/Messages/Message.cs -------------------------------------------------------------------------------- /voting-app/source-code/vote/dotnet/Vote/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/vote/dotnet/Vote/Pages/Index.cshtml -------------------------------------------------------------------------------- /voting-app/source-code/vote/dotnet/Vote/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/vote/dotnet/Vote/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /voting-app/source-code/vote/dotnet/Vote/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/vote/dotnet/Vote/Program.cs -------------------------------------------------------------------------------- /voting-app/source-code/vote/dotnet/Vote/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/vote/dotnet/Vote/Properties/launchSettings.json -------------------------------------------------------------------------------- /voting-app/source-code/vote/dotnet/Vote/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/vote/dotnet/Vote/Startup.cs -------------------------------------------------------------------------------- /voting-app/source-code/vote/dotnet/Vote/Vote.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/vote/dotnet/Vote/Vote.csproj -------------------------------------------------------------------------------- /voting-app/source-code/vote/dotnet/Vote/Vote.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/vote/dotnet/Vote/Vote.sln -------------------------------------------------------------------------------- /voting-app/source-code/vote/dotnet/Vote/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/vote/dotnet/Vote/appsettings.Development.json -------------------------------------------------------------------------------- /voting-app/source-code/vote/dotnet/Vote/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/vote/dotnet/Vote/appsettings.json -------------------------------------------------------------------------------- /voting-app/source-code/vote/dotnet/Vote/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/vote/dotnet/Vote/wwwroot/css/site.css -------------------------------------------------------------------------------- /voting-app/source-code/vote/dotnet/Vote/wwwroot/css/site.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/vote/dotnet/Vote/wwwroot/css/site.min.css -------------------------------------------------------------------------------- /voting-app/source-code/vote/dotnet/Vote/wwwroot/js/jquery-1.11.1-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/vote/dotnet/Vote/wwwroot/js/jquery-1.11.1-min.js -------------------------------------------------------------------------------- /voting-app/source-code/vote/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | Redis 3 | gunicorn 4 | -------------------------------------------------------------------------------- /voting-app/source-code/vote/static/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/vote/static/stylesheets/style.css -------------------------------------------------------------------------------- /voting-app/source-code/vote/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/vote/templates/index.html -------------------------------------------------------------------------------- /voting-app/source-code/worker/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/worker/.classpath -------------------------------------------------------------------------------- /voting-app/source-code/worker/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/worker/.project -------------------------------------------------------------------------------- /voting-app/source-code/worker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/worker/Dockerfile -------------------------------------------------------------------------------- /voting-app/source-code/worker/Dockerfile.j: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/worker/Dockerfile.j -------------------------------------------------------------------------------- /voting-app/source-code/worker/dotnet/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/worker/dotnet/Dockerfile -------------------------------------------------------------------------------- /voting-app/source-code/worker/dotnet/Dockerfile.1809: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/worker/dotnet/Dockerfile.1809 -------------------------------------------------------------------------------- /voting-app/source-code/worker/dotnet/Worker/Data/IVoteData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/worker/dotnet/Worker/Data/IVoteData.cs -------------------------------------------------------------------------------- /voting-app/source-code/worker/dotnet/Worker/Data/MySqlVoteData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/worker/dotnet/Worker/Data/MySqlVoteData.cs -------------------------------------------------------------------------------- /voting-app/source-code/worker/dotnet/Worker/Entities/Vote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/worker/dotnet/Worker/Entities/Vote.cs -------------------------------------------------------------------------------- /voting-app/source-code/worker/dotnet/Worker/Entities/VoteContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/worker/dotnet/Worker/Entities/VoteContext.cs -------------------------------------------------------------------------------- /voting-app/source-code/worker/dotnet/Worker/Messaging/IMessageQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/worker/dotnet/Worker/Messaging/IMessageQueue.cs -------------------------------------------------------------------------------- /voting-app/source-code/worker/dotnet/Worker/Messaging/MessageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/worker/dotnet/Worker/Messaging/MessageHelper.cs -------------------------------------------------------------------------------- /voting-app/source-code/worker/dotnet/Worker/Messaging/MessageQueue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/worker/dotnet/Worker/Messaging/MessageQueue.cs -------------------------------------------------------------------------------- /voting-app/source-code/worker/dotnet/Worker/Messaging/Messages/Events/VoteCastEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/worker/dotnet/Worker/Messaging/Messages/Events/VoteCastEvent.cs -------------------------------------------------------------------------------- /voting-app/source-code/worker/dotnet/Worker/Messaging/Messages/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/worker/dotnet/Worker/Messaging/Messages/Message.cs -------------------------------------------------------------------------------- /voting-app/source-code/worker/dotnet/Worker/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/worker/dotnet/Worker/Program.cs -------------------------------------------------------------------------------- /voting-app/source-code/worker/dotnet/Worker/Worker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/worker/dotnet/Worker/Worker.csproj -------------------------------------------------------------------------------- /voting-app/source-code/worker/dotnet/Worker/Workers/QueueWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/worker/dotnet/Worker/Workers/QueueWorker.cs -------------------------------------------------------------------------------- /voting-app/source-code/worker/dotnet/Worker/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/worker/dotnet/Worker/appsettings.json -------------------------------------------------------------------------------- /voting-app/source-code/worker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/worker/pom.xml -------------------------------------------------------------------------------- /voting-app/source-code/worker/src/Worker/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/worker/src/Worker/Program.cs -------------------------------------------------------------------------------- /voting-app/source-code/worker/src/Worker/Worker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/worker/src/Worker/Worker.csproj -------------------------------------------------------------------------------- /voting-app/source-code/worker/src/main/java/worker/Worker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeekshithSN/Micro_services/HEAD/voting-app/source-code/worker/src/main/java/worker/Worker.java --------------------------------------------------------------------------------