├── .dockerignore ├── .github └── workflows │ ├── docs.yml │ ├── java-ci.yml │ ├── stale.yml │ └── test-docs.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── THIRDPARTY.md ├── ci ├── README.md ├── build.sh ├── push.sh └── tag_and_push.sh ├── deploy ├── RELEASING.md ├── basic │ ├── .dockerignore │ ├── Dockerfile │ ├── FAQs.md │ ├── README.md │ ├── README_MSZ.md │ ├── VERSION │ └── terraform │ │ ├── .terraform.lock.hcl │ │ ├── atp.tf │ │ ├── compute.tf │ │ ├── datasources.tf │ │ ├── kms.tf │ │ ├── loadbalancer.tf │ │ ├── network.tf │ │ ├── outputs.tf │ │ ├── policies.tf │ │ ├── providers.tf │ │ ├── schema.yaml │ │ ├── scripts │ │ ├── catalogue.template.sql │ │ ├── cloud-config.template.yaml │ │ ├── deploy.template.sh │ │ ├── docker_entrypoint.sh │ │ ├── httpd.conf │ │ ├── mushop_media_pars_list.txt │ │ ├── setup.preflight.sh │ │ └── setup.template.sh │ │ ├── security-lists.tf │ │ ├── storage.tf │ │ ├── terraform.tfvars.example │ │ ├── tf_msz.tfvars.example │ │ └── variables.tf └── complete │ ├── Makefile │ ├── README.md │ ├── VERSION │ ├── aws-cloudformation │ ├── amazon-eks-entrypoint-new-vpc.template.yaml │ ├── docdb.yaml │ ├── msk.yaml │ ├── mushop-entrypoint.yaml │ ├── mushop-utilities.yaml │ ├── mushop.yml │ └── rds.yaml │ ├── docker-compose │ ├── README.md │ ├── dbinit │ │ ├── init.carts.sql │ │ ├── init.catalogue.sql │ │ ├── init.orders.sql │ │ └── init.user.sql │ └── docker-compose.yml │ ├── helm-chart │ ├── .gitignore │ ├── README.md │ ├── mushop │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── charts │ │ │ ├── api │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── api-deployment.yaml │ │ │ │ │ ├── api-hpa.yaml │ │ │ │ │ ├── api-svc.yaml │ │ │ │ │ └── tests │ │ │ │ │ │ └── test-connection.yaml │ │ │ │ └── values.yaml │ │ │ ├── assets │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── assets-delete-job.yaml │ │ │ │ │ ├── assets-deployment.yaml │ │ │ │ │ ├── assets-svc.yaml │ │ │ │ │ └── tests │ │ │ │ │ │ └── test-connection.yaml │ │ │ │ └── values.yaml │ │ │ ├── carts │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── config │ │ │ │ │ └── atp.init.sql │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── carts-deployment.yaml │ │ │ │ │ ├── carts-job.yaml │ │ │ │ │ ├── carts-svc.yaml │ │ │ │ │ ├── oadb-init-configmap.yaml │ │ │ │ │ ├── oadb-secrets.yaml │ │ │ │ │ └── tests │ │ │ │ │ │ └── test-connection.yaml │ │ │ │ └── values.yaml │ │ │ ├── catalogue │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── config │ │ │ │ │ ├── atp.init.sql │ │ │ │ │ └── mysql.init.sh │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── catalogue-deployment.yaml │ │ │ │ │ ├── catalogue-hpa.yaml │ │ │ │ │ ├── catalogue-job.yaml │ │ │ │ │ ├── catalogue-svc.yaml │ │ │ │ │ ├── oadb-init-configmap.yaml │ │ │ │ │ ├── oadb-secrets.yaml │ │ │ │ │ └── tests │ │ │ │ │ │ └── test-connection.yaml │ │ │ │ └── values.yaml │ │ │ ├── edge │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── config │ │ │ │ │ └── traefik.toml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── edge-deployment.yaml │ │ │ │ │ ├── edge-hpa.yaml │ │ │ │ │ ├── edge-svc.yaml │ │ │ │ │ └── tests │ │ │ │ │ │ └── test-connection.yaml │ │ │ │ └── values.yaml │ │ │ ├── events │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── config │ │ │ │ │ └── kafka.init.sh │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── events-deployment.yaml │ │ │ │ │ ├── events-hpa.yaml │ │ │ │ │ ├── events-init-configmap.yaml │ │ │ │ │ ├── events-job.yaml │ │ │ │ │ ├── events-svc.yaml │ │ │ │ │ └── tests │ │ │ │ │ │ └── test-connection.yaml │ │ │ │ └── values.yaml │ │ │ ├── fulfillment │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── fulfillment-deployment.yaml │ │ │ │ │ ├── fulfillment-svc.yaml │ │ │ │ │ └── tests │ │ │ │ │ │ └── test-connection.yaml │ │ │ │ └── values.yaml │ │ │ ├── nats │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── nats-deployment.yaml │ │ │ │ │ └── nats-svc.yaml │ │ │ │ └── values.yaml │ │ │ ├── orders │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── config │ │ │ │ │ ├── atp.init.sql │ │ │ │ │ └── mysql.init.sh │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── oadb-init-configmap.yaml │ │ │ │ │ ├── oadb-rbac.yaml │ │ │ │ │ ├── oadb-secrets.yaml │ │ │ │ │ ├── orders-deployment.yaml │ │ │ │ │ ├── orders-job.yaml │ │ │ │ │ ├── orders-svc.yaml │ │ │ │ │ └── tests │ │ │ │ │ │ └── test-connection.yaml │ │ │ │ └── values.yaml │ │ │ ├── payment │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── payment-deployment.yaml │ │ │ │ │ ├── payment-svc.yaml │ │ │ │ │ └── tests │ │ │ │ │ │ └── test-connection.yaml │ │ │ │ └── values.yaml │ │ │ ├── session │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── session-deployment.yaml │ │ │ │ │ ├── session-svc.yaml │ │ │ │ │ └── tests │ │ │ │ │ │ └── test-connection.yaml │ │ │ │ └── values.yaml │ │ │ ├── storefront │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── storefront-deployment.yaml │ │ │ │ │ ├── storefront-hpa.yaml │ │ │ │ │ ├── storefront-svc.yaml │ │ │ │ │ └── tests │ │ │ │ │ │ └── test-connection.yaml │ │ │ │ └── values.yaml │ │ │ └── user │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── config │ │ │ │ ├── atp.init.sql │ │ │ │ └── mysql.init.sh │ │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── oadb-init-configmap.yaml │ │ │ │ ├── oadb-secrets.yaml │ │ │ │ ├── tests │ │ │ │ │ └── test-connection.yaml │ │ │ │ ├── user-deployment.yaml │ │ │ │ ├── user-hpa.yaml │ │ │ │ ├── user-job.yaml │ │ │ │ └── user-svc.yaml │ │ │ │ └── values.yaml │ │ ├── requirements.yaml │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── cluster-issuers.yaml │ │ │ ├── ingress-edge.yaml │ │ │ ├── ingress-grafana.yaml │ │ │ ├── oapm-connection-secret.yaml │ │ │ ├── oos-bucket-secret.yaml │ │ │ └── oss-connection-secret.yaml │ │ ├── values-aws.yaml │ │ ├── values-dev.yaml │ │ ├── values-prod-reference.yaml │ │ ├── values-prod.yaml │ │ ├── values-test.yaml │ │ └── values.yaml │ ├── provision │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── README.md │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── cluster-service-broker.yaml │ │ │ ├── secrets-global.yaml │ │ │ ├── secrets-services.yaml │ │ │ ├── service-binding-global.yaml │ │ │ ├── service-binding-services.yaml │ │ │ ├── service-instance-global.yaml │ │ │ └── service-instance-services.yaml │ │ └── values.yaml │ └── setup │ │ ├── .helmignore │ │ ├── Chart.yaml │ │ ├── requirements.yaml │ │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ └── prom-datasource.yaml │ │ └── values.yaml │ └── terraform │ ├── .terraform.lock.hcl │ ├── CHANGELOG.md │ ├── README.md │ ├── chart-values │ ├── grafana-values.yaml │ ├── metrics-server.yaml │ └── prometheus-values.yaml │ ├── datasources.tf │ ├── mushop-oci-services.tf │ ├── mushop-outputs.tf │ ├── mushop-utilities.tf │ ├── mushop-variables.tf │ ├── mushop.tf │ ├── ofn-variables.tf │ ├── ofn.tf │ ├── oke-autoscaler.tf │ ├── oke-network.tf │ ├── oke-outputs.tf │ ├── oke-security-lists.tf │ ├── oke-variables.tf │ ├── oke.tf │ ├── oss-variables.tf │ ├── oss.tf │ ├── outputs.tf │ ├── policies.tf │ ├── providers.tf │ ├── schema.yaml │ └── terraform.tfvars.example ├── images ├── basic │ ├── 00-Free-Tier.png │ ├── 00-Topology-v1.2.0.MSZ-demo.svg │ ├── 00-Topology-v1.2.0.MSZ.svg │ ├── 00-Topology-v1.2.0.svg │ └── 00-Topology.png ├── complete │ └── 00-Topology.png ├── icon │ └── mushop-zip-file.svg ├── logo.png └── screenshot │ ├── mushop.about.png │ ├── mushop.browse.png │ ├── mushop.cart.png │ └── mushop.home.png └── src ├── README.md ├── api ├── README.md ├── app │ ├── build.gradle │ ├── openapi.properties │ └── src │ │ ├── main │ │ ├── java │ │ │ └── api │ │ │ │ ├── Application.java │ │ │ │ ├── auth │ │ │ │ ├── LoginController.java │ │ │ │ └── MuShopAuthenticationProvider.java │ │ │ │ ├── model │ │ │ │ ├── AddressInfo.java │ │ │ │ ├── AssetsLocation.java │ │ │ │ ├── CardInfo.java │ │ │ │ ├── CatalogueItem.java │ │ │ │ ├── Categories.java │ │ │ │ ├── Event.java │ │ │ │ ├── MuUserDetails.java │ │ │ │ ├── Product.java │ │ │ │ ├── UserDetail.java │ │ │ │ └── UserRegistrationRequest.java │ │ │ │ └── services │ │ │ │ ├── AssetsClient.java │ │ │ │ ├── AssetsService.java │ │ │ │ ├── AuthClient.java │ │ │ │ ├── CartsService.java │ │ │ │ ├── CatalogueService.java │ │ │ │ ├── ConfigService.java │ │ │ │ ├── DefaultServiceLocator.java │ │ │ │ ├── EventsService.java │ │ │ │ ├── NewsLetterService.java │ │ │ │ ├── OrdersService.java │ │ │ │ ├── ServiceLocator.java │ │ │ │ ├── UsersClient.java │ │ │ │ ├── UsersService.java │ │ │ │ ├── annotation │ │ │ │ ├── CartId.java │ │ │ │ ├── MuService.java │ │ │ │ └── TrackEvent.java │ │ │ │ ├── exceptions │ │ │ │ ├── ClientResponseExceptionHandler.java │ │ │ │ └── ClientResponsePredicate.java │ │ │ │ └── support │ │ │ │ ├── CartIdBinder.java │ │ │ │ └── TrackEventFilter.java │ │ └── resources │ │ │ ├── application.yml │ │ │ ├── bootstrap.yml │ │ │ └── logback.xml │ │ └── test │ │ └── java │ │ └── api │ │ ├── AssetsServiceTest.java │ │ ├── CartsServiceAnonymousTest.java │ │ ├── CartsServiceTest.java │ │ ├── CatalogueServiceTest.java │ │ ├── OrdersServiceTest.java │ │ ├── PlaceOrderTest.java │ │ └── UsersServiceTest.java ├── aws │ ├── build.gradle │ └── src │ │ ├── main │ │ ├── java │ │ │ └── api │ │ │ │ └── AwsApplication.java │ │ └── resources │ │ │ └── application-ec2.yml │ │ └── test │ │ ├── java │ │ └── api │ │ │ ├── CartsServiceAnonymousTest.java │ │ │ ├── CartsServiceTest.java │ │ │ ├── CatalogueServiceTest.java │ │ │ ├── OrdersServiceTest.java │ │ │ ├── PlaceOrderTest.java │ │ │ └── UsersServiceTest.java │ │ └── resources │ │ └── application-test.yml ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── oci │ ├── build.gradle │ └── src │ │ ├── main │ │ ├── java │ │ │ └── api │ │ │ │ └── OciApplication.java │ │ └── resources │ │ │ └── application-oraclecloud.yml │ │ └── test │ │ ├── java │ │ └── api │ │ │ ├── CartsServiceAnonymousTest.java │ │ │ ├── CartsServiceTest.java │ │ │ ├── CatalogueServiceTest.java │ │ │ ├── OrdersServiceTest.java │ │ │ ├── PlaceOrderTest.java │ │ │ └── UsersServiceTest.java │ │ └── resources │ │ └── application-test.yml ├── settings.gradle └── tck │ ├── build.gradle │ └── src │ └── main │ └── java │ └── api │ ├── AbstractAssetsServiceTest.java │ ├── AbstractCartsServiceAnonymousTest.java │ ├── AbstractCartsServiceTest.java │ ├── AbstractCatalogueServiceTest.java │ ├── AbstractDatabaseServiceTest.java │ ├── AbstractOrdersServiceTest.java │ ├── AbstractPlaceOrderTest.java │ ├── AbstractUsersServiceTest.java │ └── MockAuth.java ├── assets ├── README.md ├── app │ ├── build.gradle │ ├── openapi.properties │ └── src │ │ ├── main │ │ ├── java │ │ │ └── assets │ │ │ │ ├── Application.java │ │ │ │ ├── controllers │ │ │ │ ├── AssetController.java │ │ │ │ ├── AssetLocationDTO.java │ │ │ │ └── AssetOperations.java │ │ │ │ └── storage │ │ │ │ └── AbstractObjectStorageHandler.java │ │ └── resources │ │ │ ├── application-app.yml │ │ │ ├── application.yml │ │ │ ├── assets │ │ │ └── image │ │ │ │ └── product │ │ │ │ ├── MU-US-001.png │ │ │ │ ├── MU-US-001_1.png │ │ │ │ ├── MU-US-002.png │ │ │ │ ├── MU-US-002_1.png │ │ │ │ ├── MU-US-003.png │ │ │ │ ├── MU-US-003_1.png │ │ │ │ ├── MU-US-004.png │ │ │ │ ├── MU-US-004_1.png │ │ │ │ ├── MU-US-005.png │ │ │ │ ├── MU-US-005_1.png │ │ │ │ ├── MU-US-006.png │ │ │ │ ├── MU-US-006_1.png │ │ │ │ ├── MU-US-007.png │ │ │ │ ├── MU-US-007_1.png │ │ │ │ ├── MU-US-008.png │ │ │ │ ├── MU-US-008_1.png │ │ │ │ ├── MU-US-009.png │ │ │ │ ├── MU-US-009_1.png │ │ │ │ ├── MU-US-010.png │ │ │ │ ├── MU-US-010_1.png │ │ │ │ ├── MU-US-011.png │ │ │ │ ├── MU-US-011_1.png │ │ │ │ ├── MU-US-012.png │ │ │ │ ├── MU-US-012_1.png │ │ │ │ ├── MU-US-013.png │ │ │ │ ├── MU-US-013_1.png │ │ │ │ ├── MU-US-014.png │ │ │ │ ├── MU-US-014_1.png │ │ │ │ ├── MU-US-015.png │ │ │ │ ├── MU-US-015_1.png │ │ │ │ ├── MU-US-016.png │ │ │ │ ├── MU-US-016_1.png │ │ │ │ ├── MU-US-017.png │ │ │ │ ├── MU-US-017_1.png │ │ │ │ ├── MU-US-018.png │ │ │ │ ├── MU-US-018_1.png │ │ │ │ ├── MU-US-019.png │ │ │ │ ├── MU-US-019_1.png │ │ │ │ ├── MU-US-020.png │ │ │ │ ├── MU-US-020_1.png │ │ │ │ ├── MU-US-021.png │ │ │ │ ├── MU-US-021_1.png │ │ │ │ ├── MU-US-022.png │ │ │ │ ├── MU-US-022_1.png │ │ │ │ ├── MU-US-023.png │ │ │ │ ├── MU-US-023_1.png │ │ │ │ ├── MU-US-024.png │ │ │ │ ├── MU-US-024_1.png │ │ │ │ ├── MU-US-025.png │ │ │ │ ├── MU-US-025_1.png │ │ │ │ ├── MU-US-026.png │ │ │ │ ├── MU-US-026_1.png │ │ │ │ ├── MU-US-027.png │ │ │ │ └── MU-US-027_1.png │ │ │ ├── bootstrap.yml │ │ │ └── logback.xml │ │ └── test │ │ ├── java │ │ └── assets │ │ │ ├── AssetsTest.java │ │ │ └── controllers │ │ │ └── AssetControllerTest.java │ │ └── resources │ │ └── application-test.yml ├── aws │ ├── build.gradle │ └── src │ │ ├── main │ │ ├── java │ │ │ └── assets │ │ │ │ ├── AwsApplication.java │ │ │ │ ├── controllers │ │ │ │ └── AwsAssetController.java │ │ │ │ └── storage │ │ │ │ └── AwsObjectStorageHandler.java │ │ └── resources │ │ │ ├── application-ec2.yml │ │ │ └── bootstrap-ec2.yml │ │ └── test │ │ ├── java │ │ └── assets │ │ │ ├── AwsAssetsTest.java │ │ │ └── controllers │ │ │ └── AwsAssetControllerTest.java │ │ └── resources │ │ └── application-test.yml ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── oci │ ├── build.gradle │ └── src │ │ ├── main │ │ ├── java │ │ │ └── assets │ │ │ │ ├── OciApplication.java │ │ │ │ ├── controllers │ │ │ │ └── OciAssetController.java │ │ │ │ └── storage │ │ │ │ └── OciObjectStorageHandler.java │ │ └── resources │ │ │ └── application-oraclecloud.yml │ │ └── test │ │ ├── java │ │ └── assets │ │ │ ├── OciAssetsTest.java │ │ │ ├── controllers │ │ │ └── OciAssetControllerTest.java │ │ │ └── util │ │ │ └── CustomRegionProvider.java │ │ └── resources │ │ └── application-test.yml ├── settings.gradle └── tck │ ├── build.gradle │ └── src │ └── main │ └── java │ └── assets │ ├── AbstractAssetsTest.java │ └── controllers │ └── AbstractAssetControllerTest.java ├── carts ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ └── maven-wrapper.properties ├── README.md ├── app │ ├── openapi.properties │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── mushop │ │ │ │ └── carts │ │ │ │ └── Application.java │ │ └── resources │ │ │ └── application-app.yml │ │ └── test │ │ └── java │ │ └── mushop │ │ └── carts │ │ ├── CartRepositoryMongoTest.java │ │ └── TestCartService.java ├── aws │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── mushop │ │ │ │ └── carts │ │ │ │ └── AwsApplication.java │ │ └── resources │ │ │ ├── application-ec2.yml │ │ │ └── bootstrap-ec2.yml │ │ └── test │ │ ├── java │ │ └── mushop │ │ │ └── carts │ │ │ ├── CartRepositoryMongoTest.java │ │ │ └── TestCartService.java │ │ └── resources │ │ └── application-test.yml ├── docker │ ├── Dockerfile.base-alpine-glibc │ ├── Dockerfile.base-graalvm │ ├── Dockerfile.base-native │ ├── build-and-push.sh │ └── import-aws-rds-certs.sh ├── lib │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── mushop │ │ │ │ └── carts │ │ │ │ ├── controllers │ │ │ │ └── CartsController.java │ │ │ │ ├── entities │ │ │ │ ├── Cart.java │ │ │ │ └── Item.java │ │ │ │ └── repositories │ │ │ │ └── CartRepository.java │ │ └── resources │ │ │ ├── META-INF │ │ │ └── native-image │ │ │ │ └── carts-lib │ │ │ │ └── native-image.properties │ │ │ ├── application.yaml │ │ │ ├── bootstrap.yml │ │ │ └── logback.xml │ │ └── test │ │ └── java │ │ └── mushop │ │ └── carts │ │ └── entities │ │ └── CartTest.java ├── mvnw ├── mvnw.bat ├── oci │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── mushop │ │ │ │ └── carts │ │ │ │ └── OciApplication.java │ │ └── resources │ │ │ └── application-oraclecloud.yaml │ │ └── test │ │ ├── java │ │ └── mushop │ │ │ └── carts │ │ │ ├── CartRepositoryMongoTest.java │ │ │ └── TestCartService.java │ │ └── resources │ │ └── application-test.yml ├── pom.xml ├── sql │ └── examples.sql └── tck │ ├── pom.xml │ └── src │ └── main │ └── java │ └── mushop │ └── carts │ ├── AbstractCartRepositoryMongoTest.java │ └── AbstractTestCartService.java ├── catalogue ├── .dockerignore ├── README.md ├── app │ ├── build.gradle │ ├── openapi.properties │ └── src │ │ ├── main │ │ ├── java │ │ │ └── catalogue │ │ │ │ ├── Application.java │ │ │ │ ├── controllers │ │ │ │ ├── CatalogueController.java │ │ │ │ ├── CatalogueItemDTO.java │ │ │ │ ├── CatalogueOperations.java │ │ │ │ ├── CatalogueSizeDTO.java │ │ │ │ └── CategoriesDTO.java │ │ │ │ ├── db │ │ │ │ └── DbSetup.java │ │ │ │ ├── model │ │ │ │ ├── Category.java │ │ │ │ └── Product.java │ │ │ │ └── repositories │ │ │ │ ├── CategoryRepository.java │ │ │ │ └── ProductRepository.java │ │ └── resources │ │ │ ├── application-app.yml │ │ │ ├── application.yml │ │ │ ├── bootstrap.yml │ │ │ ├── db │ │ │ ├── catalogue_data.sql │ │ │ └── h2 │ │ │ │ └── V001__CreateTables.sql │ │ │ └── logback.xml │ │ └── test │ │ ├── java │ │ └── catalogue │ │ │ ├── H2CatalogueTest.java │ │ │ ├── H2ProductControllerTest.java │ │ │ └── H2ProductRepositoryTest.java │ │ └── resources │ │ └── application-test.yml ├── aws │ ├── build.gradle │ └── src │ │ ├── main │ │ ├── java │ │ │ └── catalogue │ │ │ │ ├── AwsApplication.java │ │ │ │ └── repositories │ │ │ │ ├── MySqlCategoryRepository.java │ │ │ │ └── MySqlProductRepository.java │ │ └── resources │ │ │ ├── application-ec2.yml │ │ │ ├── bootstrap-ec2.yml │ │ │ └── db │ │ │ └── migration │ │ │ └── V001__CreateTables.sql │ │ └── test │ │ ├── java │ │ └── catalogue │ │ │ ├── AwsCatalogueTest.java │ │ │ ├── AwsProductControllerTest.java │ │ │ └── AwsProductRepositoryTest.java │ │ └── resources │ │ └── application-test.yml ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── oci │ ├── build.gradle │ └── src │ │ ├── main │ │ ├── java │ │ │ └── catalogue │ │ │ │ ├── OciApplication.java │ │ │ │ └── repositories │ │ │ │ ├── OracleCategoryRepository.java │ │ │ │ └── OracleProductRepository.java │ │ └── resources │ │ │ ├── application-oraclecloud.yml │ │ │ └── db │ │ │ └── migration │ │ │ └── V001__CreateTables.sql │ │ └── test │ │ ├── java │ │ └── catalogue │ │ │ ├── OciCatalogueTest.java │ │ │ ├── OciProductControllerTest.java │ │ │ └── OciProductRepositoryTest.java │ │ └── resources │ │ └── application-test.yml ├── settings.gradle └── tck │ ├── build.gradle │ └── src │ └── main │ └── java │ └── catalogue │ ├── AbstractCatalogueTest.java │ ├── AbstractProductControllerTest.java │ └── AbstractProductRepositoryTest.java ├── dbtools ├── Dockerfile ├── VERSION └── build-and-push.sh ├── docs ├── .gitignore ├── .hugo_build.lock ├── Makefile ├── README.md ├── archetypes │ └── default.md ├── assets │ └── sass │ │ ├── _config.scss │ │ └── mushop.scss ├── config.toml ├── content │ ├── _index.md │ ├── acknowledgements.md │ ├── introduction │ │ ├── _index.md │ │ └── images │ │ │ └── mushop.services.png │ ├── micronaut │ │ ├── _index.md │ │ ├── atp.md │ │ ├── cloudnative.md │ │ ├── data.md │ │ ├── deployment.md │ │ ├── gateway.md │ │ ├── httpclient.md │ │ ├── management.md │ │ ├── messaging.md │ │ ├── metrics.md │ │ ├── native.md │ │ ├── openapi.md │ │ ├── security.md │ │ ├── service-discovery.md │ │ └── tracing.md │ ├── quickstart │ │ ├── _index.md │ │ ├── aws-cloudformation.md │ │ ├── dockecompose.md │ │ ├── helm.md │ │ ├── images │ │ │ ├── aws │ │ │ │ ├── aws-stack-configure.png │ │ │ │ ├── aws-stack-create.png │ │ │ │ ├── aws-stack-mandatory.png │ │ │ │ ├── aws-stack-outputs.png │ │ │ │ └── aws-stack-review.png │ │ │ └── oci │ │ │ │ ├── oci-stack-configure-newsletter.png │ │ │ │ ├── oci-stack-configure.png │ │ │ │ ├── oci-stack-outputs.png │ │ │ │ ├── oci-stack-review.png │ │ │ │ ├── oci-stack-welcome-reviewed.png │ │ │ │ └── oci-stack-welcome.png │ │ ├── oci-terraform.md │ │ └── terraform.md │ ├── resources.md │ └── usage.md ├── data │ └── config │ │ └── settings.yaml ├── deploy.sh ├── i18n │ └── en.toml ├── layouts │ ├── partials │ │ ├── custom-head.html │ │ └── favicon.html │ └── shortcodes │ │ ├── content │ │ └── setup.md │ │ ├── ghcontribs.html │ │ └── kenburns.html ├── static │ ├── icons │ │ ├── android-chrome-192x192.png │ │ ├── android-chrome-384x384.png │ │ ├── apple-touch-icon.png │ │ ├── browserconfig.xml │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon.ico │ │ ├── mstile-150x150.png │ │ ├── mstile-310x310.png │ │ ├── safari-pinned-tab.svg │ │ └── site.webmanifest │ └── images │ │ ├── gcn-logo.png │ │ ├── intro │ │ ├── arch-diagram.png │ │ ├── cloudnative.png │ │ ├── mushop.about.png │ │ └── mushop.home.png │ │ ├── logo.dark.png │ │ └── logo.light.png └── themes │ └── gcn │ ├── .gitignore │ ├── LICENSE │ ├── archetypes │ └── default.md │ ├── assets │ ├── js │ │ └── site │ │ │ ├── clipboard.js │ │ │ ├── mermaid.js │ │ │ ├── search.js │ │ │ ├── settings.js │ │ │ └── styling.js │ └── sass │ │ ├── fonts.scss │ │ ├── main.scss │ │ ├── mixins.scss │ │ ├── syntax.scss │ │ ├── uk │ │ ├── _components.scss │ │ ├── _config.scss │ │ ├── _hooks.scss │ │ ├── _settings.scss │ │ └── _uikit.scss │ │ └── variables.scss │ ├── data │ └── config │ │ └── scripts.yaml │ ├── i18n │ └── en.toml │ ├── layouts │ ├── 404.html │ ├── _default │ │ ├── baseof.html │ │ ├── list.html │ │ └── single.html │ ├── index.html │ ├── index.json │ ├── partials │ │ ├── _close.html │ │ ├── _open.html │ │ ├── custom-footer.html │ │ ├── custom-head.html │ │ ├── custom-header.html │ │ ├── custom-scripts.html │ │ ├── custom-settings.html │ │ ├── favicon.html │ │ ├── footer.html │ │ ├── head.html │ │ ├── header.html │ │ ├── menu-footer.html │ │ ├── menu-settings.html │ │ ├── menu.html │ │ ├── meta.html │ │ ├── scripts.html │ │ ├── search.html │ │ ├── tags.html │ │ └── toc.html │ └── shortcodes │ │ ├── alert.html │ │ ├── aspect.html │ │ ├── card.html │ │ ├── grid.html │ │ ├── icon.html │ │ ├── list │ │ └── item.html │ │ ├── mermaid.html │ │ ├── overflow.html │ │ ├── slideshow.html │ │ ├── switcher.html │ │ ├── width.html │ │ └── wrapper.html │ ├── package-lock.json │ ├── package.json │ ├── static │ ├── fonts │ │ ├── OracleSans_Bd.ttf │ │ ├── OracleSans_Bd.woff │ │ ├── OracleSans_Bd.woff2 │ │ ├── OracleSans_BdIt.ttf │ │ ├── OracleSans_BdIt.woff │ │ ├── OracleSans_BdIt.woff2 │ │ ├── OracleSans_It.ttf │ │ ├── OracleSans_It.woff │ │ ├── OracleSans_It.woff2 │ │ ├── OracleSans_Lt.ttf │ │ ├── OracleSans_Lt.woff │ │ ├── OracleSans_Lt.woff2 │ │ ├── OracleSans_LtIt.ttf │ │ ├── OracleSans_LtIt.woff │ │ ├── OracleSans_LtIt.woff2 │ │ ├── OracleSans_Rg.ttf │ │ ├── OracleSans_Rg.woff │ │ ├── OracleSans_Rg.woff2 │ │ ├── OracleSans_SBd.ttf │ │ ├── OracleSans_SBd.woff │ │ ├── OracleSans_SBd.woff2 │ │ ├── OracleSans_SBdIt.ttf │ │ ├── OracleSans_SBdIt.woff │ │ ├── OracleSans_SBdIt.woff2 │ │ ├── OracleSans_ULt.ttf │ │ ├── OracleSans_ULt.woff │ │ ├── OracleSans_ULt.woff2 │ │ ├── OracleSans_ULtIt.ttf │ │ ├── OracleSans_ULtIt.woff │ │ ├── OracleSans_ULtIt.woff2 │ │ ├── OracleSans_XBd.ttf │ │ ├── OracleSans_XBd.woff │ │ ├── OracleSans_XBd.woff2 │ │ ├── OracleSans_XBdIt.ttf │ │ ├── OracleSans_XBdIt.woff │ │ └── OracleSans_XBdIt.woff2 │ └── images │ │ └── oracle.svg │ └── theme.toml ├── edge-router ├── .dockerignore ├── Dockerfile ├── README.md ├── VERSION ├── build-and-push.sh ├── docker-compose.yml ├── edge.yaml ├── scripts │ ├── build.sh │ └── push.sh └── traefik.toml ├── events ├── README.md ├── app │ ├── build.gradle │ ├── openapi.properties │ └── src │ │ ├── main │ │ ├── java │ │ │ └── events │ │ │ │ ├── Application.java │ │ │ │ ├── controllers │ │ │ │ └── EventController.java │ │ │ │ ├── model │ │ │ │ ├── Event.java │ │ │ │ ├── EventRecord.java │ │ │ │ └── EventsReceived.java │ │ │ │ └── service │ │ │ │ ├── EventProducer.java │ │ │ │ └── EventService.java │ │ └── resources │ │ │ ├── application.yml │ │ │ ├── bootstrap.yml │ │ │ └── logback.xml │ │ └── test │ │ └── java │ │ └── events │ │ └── EventsTest.java ├── aws │ ├── build.gradle │ └── src │ │ ├── main │ │ ├── java │ │ │ └── events │ │ │ │ └── AwsApplication.java │ │ └── resources │ │ │ ├── application-ec2.yml │ │ │ └── bootstrap-ec2.yml │ │ └── test │ │ ├── java │ │ └── events │ │ │ └── EventsTest.java │ │ └── resources │ │ └── application-test.yml ├── buildSrc │ └── build.gradle ├── docker │ ├── Dockerfile.kafkaclient │ ├── aws.cli.pgp │ └── build-and-push.sh ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── oci │ ├── build.gradle │ └── src │ │ ├── main │ │ ├── java │ │ │ └── events │ │ │ │ └── OciApplication.java │ │ └── resources │ │ │ └── application-oraclecloud.yml │ │ └── test │ │ ├── java │ │ └── events │ │ │ └── EventsTest.java │ │ └── resources │ │ └── application-test.yml ├── settings.gradle └── tck │ ├── build.gradle │ └── src │ └── main │ └── java │ └── events │ └── AbstractEventsTest.java ├── fulfillment ├── README.md ├── app │ ├── build.gradle │ ├── openapi.properties │ └── src │ │ ├── main │ │ ├── java │ │ │ └── mushop │ │ │ │ ├── Application.java │ │ │ │ ├── FulfillmentController.java │ │ │ │ ├── OrderUpdate.java │ │ │ │ ├── OrdersListener.java │ │ │ │ ├── Shipment.java │ │ │ │ └── ShipmentsPublisher.java │ │ └── resources │ │ │ ├── application.yml │ │ │ └── logback.xml │ │ └── test │ │ └── groovy │ │ └── mushop │ │ ├── FulfillmentControllerSpec.groovy │ │ └── FulfillmentListenerSpec.groovy ├── aws │ ├── build.gradle │ └── src │ │ ├── main │ │ ├── java │ │ │ └── mushop │ │ │ │ └── AwsApplication.java │ │ └── resources │ │ │ └── application-ec2.yml │ │ └── test │ │ ├── groovy │ │ └── mushop │ │ │ ├── FulfillmentControllerSpec.groovy │ │ │ └── FulfillmentListenerSpec.groovy │ │ └── resources │ │ └── application-test.yml ├── buildSrc │ └── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── oci │ ├── build.gradle │ └── src │ │ ├── main │ │ ├── java │ │ │ └── mushop │ │ │ │ └── OciApplication.java │ │ └── resources │ │ │ └── application-oraclecloud.yml │ │ └── test │ │ ├── groovy │ │ └── mushop │ │ │ ├── FulfillmentControllerSpec.groovy │ │ │ └── FulfillmentListenerSpec.groovy │ │ └── resources │ │ └── application-test.yml ├── settings.gradle └── tck │ ├── build.gradle │ └── src │ └── main │ └── groovy │ └── mushop │ ├── AbstractFulfillmentControllerSpec.groovy │ ├── AbstractFulfillmentListenerSpec.groovy │ └── OrdersPublisher.groovy ├── functions └── newsletter-subscription │ ├── .gitignore │ ├── README.md │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── micronaut-cli.yml │ ├── settings.gradle │ └── src │ ├── main │ ├── java │ │ └── newsletter │ │ │ └── subscription │ │ │ ├── Function.java │ │ │ ├── JavaMailSender.java │ │ │ ├── MailConfiguration.java │ │ │ ├── MailSender.java │ │ │ ├── SubscribeRequest.java │ │ │ └── SubscriptionController.java │ └── resources │ │ ├── application.yml │ │ └── simplelogger.properties │ └── test │ └── java │ └── newsletter │ └── subscription │ └── FunctionTest.java ├── load ├── .dockerignore ├── Dockerfile ├── README.md ├── VERSION ├── load-dep.yaml ├── locustfile.py ├── runLocust.sh └── scripts │ ├── build.sh │ └── push.sh ├── orders ├── README.md ├── app │ ├── build.gradle │ ├── openapi.properties │ └── src │ │ ├── main │ │ ├── java │ │ │ └── mushop │ │ │ │ └── orders │ │ │ │ ├── Application.java │ │ │ │ ├── OrdersConfiguration.java │ │ │ │ ├── client │ │ │ │ └── PaymentClient.java │ │ │ │ ├── controllers │ │ │ │ ├── DtoMapper.java │ │ │ │ ├── OrdersController.java │ │ │ │ └── dto │ │ │ │ │ ├── CustomerDto.java │ │ │ │ │ ├── CustomerOrderDto.java │ │ │ │ │ ├── CustomerOrdersDto.java │ │ │ │ │ └── ItemDto.java │ │ │ │ ├── entities │ │ │ │ ├── Address.java │ │ │ │ ├── Card.java │ │ │ │ ├── Cart.java │ │ │ │ ├── Customer.java │ │ │ │ ├── CustomerOrder.java │ │ │ │ ├── Item.java │ │ │ │ └── Shipment.java │ │ │ │ ├── repositories │ │ │ │ └── CustomerOrderRepository.java │ │ │ │ ├── resources │ │ │ │ ├── NewOrderResource.java │ │ │ │ ├── OrderUpdate.java │ │ │ │ ├── PaymentRequest.java │ │ │ │ └── PaymentResponse.java │ │ │ │ └── services │ │ │ │ ├── OrdersPublisher.java │ │ │ │ ├── OrdersService.java │ │ │ │ └── ShipmentsListener.java │ │ └── resources │ │ │ ├── application-app.yml │ │ │ ├── application.yml │ │ │ ├── bootstrap.yml │ │ │ └── logback.xml │ │ └── test │ │ ├── java │ │ └── mushop │ │ │ └── orders │ │ │ ├── controller │ │ │ ├── HealthControllerTest.java │ │ │ └── OrderControllerTest.java │ │ │ ├── entities │ │ │ ├── OrderEntityUnitTest.java │ │ │ └── UnitPojo.java │ │ │ └── services │ │ │ └── OrderServiceTest.java │ │ └── resources │ │ └── application-test.yml ├── aws │ ├── build.gradle │ └── src │ │ ├── main │ │ ├── java │ │ │ └── mushop │ │ │ │ └── orders │ │ │ │ └── AwsApplication.java │ │ └── resources │ │ │ ├── application-ec2.yml │ │ │ └── bootstrap-ec2.yml │ │ └── test │ │ ├── java │ │ └── mushop │ │ │ └── orders │ │ │ ├── controller │ │ │ ├── HealthControllerTest.java │ │ │ └── OrderControllerTest.java │ │ │ ├── entities │ │ │ └── OrderEntityUnitTest.java │ │ │ └── services │ │ │ └── OrderServiceTest.java │ │ └── resources │ │ └── application-test.yml ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── oci │ ├── build.gradle │ └── src │ │ ├── main │ │ ├── java │ │ │ └── mushop │ │ │ │ └── orders │ │ │ │ └── OciApplication.java │ │ └── resources │ │ │ └── application-oraclecloud.yml │ │ └── test │ │ ├── java │ │ └── mushop │ │ │ └── orders │ │ │ ├── controller │ │ │ ├── HealthControllerTest.java │ │ │ └── OrderControllerTest.java │ │ │ ├── entities │ │ │ └── OrderEntityUnitTest.java │ │ │ └── services │ │ │ └── OrderServiceTest.java │ │ └── resources │ │ └── application-test.yml ├── settings.gradle └── tck │ ├── build.gradle │ └── src │ └── main │ └── java │ └── mushop │ └── orders │ ├── AbstractTest.java │ ├── controller │ ├── AbstractHealthControllerTest.java │ └── AbstractOrderControllerTest.java │ ├── entities │ └── AbstractOrderEntityUnitTest.java │ └── services │ └── AbstractOrderServiceTest.java ├── payment ├── README.md ├── app │ ├── build.gradle │ ├── openapi.properties │ └── src │ │ ├── main │ │ ├── java │ │ │ └── payment │ │ │ │ ├── Application.java │ │ │ │ ├── Authorization.java │ │ │ │ ├── AuthorizationRequest.java │ │ │ │ ├── PaymentConfiguration.java │ │ │ │ └── PaymentController.java │ │ └── resources │ │ │ ├── application.yml │ │ │ └── logback.xml │ │ └── test │ │ └── java │ │ └── payment │ │ └── PaymentTest.java ├── aws │ ├── build.gradle │ └── src │ │ ├── main │ │ ├── java │ │ │ └── payment │ │ │ │ └── AwsApplication.java │ │ └── resources │ │ │ └── application-ec2.yml │ │ └── test │ │ ├── java │ │ └── payment │ │ │ └── PaymentTest.java │ │ └── resources │ │ └── application-test.yml ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── oci │ ├── build.gradle │ └── src │ │ ├── main │ │ ├── java │ │ │ └── payment │ │ │ │ └── OciApplication.java │ │ └── resources │ │ │ └── application-oraclecloud.yml │ │ └── test │ │ ├── java │ │ └── payment │ │ │ └── PaymentTest.java │ │ └── resources │ │ └── application-test.yml ├── settings.gradle └── tck │ ├── build.gradle │ └── src │ └── main │ └── java │ └── payment │ └── AbstractPaymentTest.java ├── storefront ├── .dockerignore ├── .eslintignore ├── .eslintrc ├── .gitignore ├── Dockerfile ├── Makefile ├── README.md ├── THIRDPARTY.md ├── VERSION ├── babel.config.js ├── build-and-push.sh ├── gulpfile.js ├── jest.config.js ├── nginx │ ├── default.conf │ └── nginx.conf ├── package-lock.json ├── package.json ├── scripts │ ├── build.sh │ └── push.sh ├── src │ ├── favicon.ico │ ├── images │ │ ├── catalog │ │ │ ├── cat-feeders.svg │ │ │ ├── cat-food.svg │ │ │ ├── cat-grooming.svg │ │ │ └── cat-litter.svg │ │ ├── hero │ │ │ ├── 01.jpg │ │ │ ├── 02.jpg │ │ │ └── 03.jpg │ │ ├── logo-inverse.png │ │ ├── logo-inverse.svg │ │ ├── logo.png │ │ ├── logo.svg │ │ └── tech │ │ │ ├── apigw.svg │ │ │ ├── atp.png │ │ │ ├── atp.svg │ │ │ ├── aws.png │ │ │ ├── awslambda.png │ │ │ ├── awslb.png │ │ │ ├── basic.png │ │ │ ├── bucket.svg │ │ │ ├── cdn.svg │ │ │ ├── compute.svg │ │ │ ├── dns.svg │ │ │ ├── docdb.png │ │ │ ├── docker.svg │ │ │ ├── email.svg │ │ │ ├── fn.png │ │ │ ├── go.png │ │ │ ├── go.svg │ │ │ ├── grafana.png │ │ │ ├── helidon.svg │ │ │ ├── helm.svg │ │ │ ├── html5.png │ │ │ ├── java.png │ │ │ ├── k8s.png │ │ │ ├── lb.svg │ │ │ ├── micronaut.png │ │ │ ├── mongo.png │ │ │ ├── msk.png │ │ │ ├── nats.png │ │ │ ├── nginx.png │ │ │ ├── nodejs.png │ │ │ ├── nodejs.svg │ │ │ ├── oci.png │ │ │ ├── osbroker.png │ │ │ ├── prometheus.png │ │ │ ├── python.svg │ │ │ ├── rds.png │ │ │ ├── redis.png │ │ │ ├── streaming.svg │ │ │ ├── traefik.svg │ │ │ ├── ts.svg │ │ │ ├── vcn.svg │ │ │ └── waf.svg │ ├── scripts │ │ ├── app.js │ │ ├── charts.js │ │ ├── mu │ │ │ ├── bindings │ │ │ │ └── index.js │ │ │ ├── handlers │ │ │ │ └── index.js │ │ │ ├── index.js │ │ │ ├── logical │ │ │ │ └── index.js │ │ │ ├── mu.js │ │ │ └── util │ │ │ │ └── index.js │ │ ├── shop │ │ │ ├── about.js │ │ │ ├── api.js │ │ │ ├── cart.js │ │ │ ├── catalog.js │ │ │ ├── components │ │ │ │ ├── badge.js │ │ │ │ ├── beta.js │ │ │ │ ├── chart.js │ │ │ │ ├── debug.js │ │ │ │ ├── form.js │ │ │ │ └── newsletter.js │ │ │ ├── config.js │ │ │ ├── constants.js │ │ │ ├── helper │ │ │ │ ├── info.js │ │ │ │ ├── mixins.js │ │ │ │ ├── subscriber.js │ │ │ │ └── viewmx.js │ │ │ ├── index.js │ │ │ ├── order.js │ │ │ ├── page.js │ │ │ ├── router.js │ │ │ ├── ui.js │ │ │ └── user.js │ │ ├── uikit.js │ │ └── util │ │ │ ├── constants.js │ │ │ ├── wait.js │ │ │ └── window.js │ ├── styles │ │ ├── _settings.less │ │ ├── _uikit.less │ │ ├── _uikit.theme.less │ │ ├── components │ │ │ └── mixin.less │ │ ├── shop.less │ │ └── uikit.less │ └── templates │ │ ├── components │ │ ├── _navbar.pug │ │ └── _toolbar.pug │ │ ├── data │ │ └── _data.pug │ │ ├── layouts │ │ ├── _account.pug │ │ ├── _article.pug │ │ ├── _checkout.pug │ │ ├── _default.pug │ │ ├── _embed.pug │ │ ├── _index.pug │ │ ├── _informational.pug │ │ └── _pages.pug │ │ ├── mixins │ │ ├── _article.pug │ │ ├── _filterbox.pug │ │ ├── _icon.pug │ │ ├── _import.pug │ │ ├── _link-to-all.pug │ │ ├── _price.pug │ │ ├── _product-small.pug │ │ ├── _product.pug │ │ └── _quantity.pug │ │ ├── pages │ │ ├── 404.pug │ │ ├── 50x.pug │ │ ├── about.pug │ │ ├── article.pug │ │ ├── auth.pug │ │ ├── blog.pug │ │ ├── brands.pug │ │ ├── cart.pug │ │ ├── catalog.pug │ │ ├── category.pug │ │ ├── checkout.pug │ │ ├── compare.pug │ │ ├── contacts.pug │ │ ├── customer.pug │ │ ├── delivery.pug │ │ ├── error.pug │ │ ├── faq.pug │ │ ├── favorites.pug │ │ ├── index.pug │ │ ├── orders.pug │ │ ├── personal.pug │ │ ├── product.pug │ │ ├── reviews.pug │ │ ├── services.pug │ │ ├── settings.pug │ │ └── subcategory.pug │ │ ├── partials │ │ ├── _article.pug │ │ ├── _cart-offcanvas.pug │ │ ├── _consent.pug │ │ ├── _copyright.pug │ │ ├── _footer.pug │ │ ├── _head.pug │ │ ├── _header.pug │ │ ├── _logo-inverse.pug │ │ ├── _logo.pug │ │ ├── _nav-offcanvas.pug │ │ └── _products.pug │ │ └── views │ │ ├── miniCart.pug │ │ ├── orderCheckout.pug │ │ ├── productCard.pug │ │ ├── productGrid.pug │ │ ├── productSlider.pug │ │ ├── userAddress.pug │ │ ├── userNotAuthenticated.pug │ │ ├── userPayment.pug │ │ └── userToolbar.pug ├── test │ ├── Dockerfile │ ├── docker-compose.yml │ ├── helper │ │ ├── data.js │ │ ├── main.js │ │ └── mock.js │ └── user │ │ └── user.spec.js └── webpack.config.js └── user ├── README.md ├── app ├── build.gradle ├── openapi.properties └── src │ ├── main │ ├── java │ │ └── user │ │ │ ├── Application.java │ │ │ ├── PasswordUtils.java │ │ │ ├── controllers │ │ │ ├── DtoMapper.java │ │ │ ├── LoginOperations.java │ │ │ ├── LoginOperationsController.java │ │ │ ├── UserOperations.java │ │ │ ├── UserOperationsController.java │ │ │ └── dto │ │ │ │ ├── UserAddressDetailDto.java │ │ │ │ ├── UserAddressDto.java │ │ │ │ ├── UserCardDetailDto.java │ │ │ │ ├── UserCardDto.java │ │ │ │ ├── UserDetailDto.java │ │ │ │ └── UserDto.java │ │ │ ├── model │ │ │ ├── Default.java │ │ │ ├── User.java │ │ │ ├── UserAddress.java │ │ │ └── UserCard.java │ │ │ └── repositories │ │ │ ├── UserAddressRepository.java │ │ │ ├── UserCardRepository.java │ │ │ └── UserRepository.java │ └── resources │ │ ├── application-app.yml │ │ ├── application.yml │ │ ├── bootstrap.yml │ │ ├── db │ │ └── h2 │ │ │ └── V001__CreateTables.sql │ │ └── logback.xml │ └── test │ ├── java │ └── user │ │ ├── H2UserTest.java │ │ └── controllers │ │ └── H2UserControllerTest.java │ └── resources │ ├── application-test.yml │ └── logback-test.xml ├── aws ├── build.gradle └── src │ ├── main │ ├── java │ │ └── user │ │ │ ├── AwsApplication.java │ │ │ └── repositories │ │ │ ├── MySqlUserAddressRepository.java │ │ │ ├── MySqlUserCardRepository.java │ │ │ └── MySqlUserRepository.java │ └── resources │ │ ├── application-ec2.yml │ │ ├── bootstrap-ec2.yml │ │ └── db │ │ └── migration │ │ └── V001__CreateTables.sql │ └── test │ ├── java │ └── user │ │ ├── AwsUserTest.java │ │ └── controllers │ │ └── AwsUserControllerTest.java │ └── resources │ └── application-test.yml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── oci ├── build.gradle └── src │ ├── main │ ├── java │ │ └── user │ │ │ ├── OciApplication.java │ │ │ └── repositories │ │ │ ├── OracleUserAddressRepository.java │ │ │ ├── OracleUserCardRepository.java │ │ │ └── OracleUserRepository.java │ └── resources │ │ ├── application-oraclecloud.yml │ │ └── db │ │ └── migration │ │ └── V001__CreateTables.sql │ └── test │ ├── java │ └── user │ │ ├── OciUserTest.java │ │ └── controllers │ │ └── OciUserControllerTest.java │ └── resources │ └── application-test.yml ├── settings.gradle └── tck ├── build.gradle └── src └── main └── java └── user ├── AbstractUserTest.java └── controllers └── AbstractUserControllerTest.java /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/java-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/.github/workflows/java-ci.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/test-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/.github/workflows/test-docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/SECURITY.md -------------------------------------------------------------------------------- /THIRDPARTY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/THIRDPARTY.md -------------------------------------------------------------------------------- /ci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/ci/README.md -------------------------------------------------------------------------------- /ci/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/ci/build.sh -------------------------------------------------------------------------------- /ci/push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/ci/push.sh -------------------------------------------------------------------------------- /ci/tag_and_push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/ci/tag_and_push.sh -------------------------------------------------------------------------------- /deploy/RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/RELEASING.md -------------------------------------------------------------------------------- /deploy/basic/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/basic/.dockerignore -------------------------------------------------------------------------------- /deploy/basic/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/basic/Dockerfile -------------------------------------------------------------------------------- /deploy/basic/FAQs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/basic/FAQs.md -------------------------------------------------------------------------------- /deploy/basic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/basic/README.md -------------------------------------------------------------------------------- /deploy/basic/README_MSZ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/basic/README_MSZ.md -------------------------------------------------------------------------------- /deploy/basic/VERSION: -------------------------------------------------------------------------------- 1 | 1.2.3 -------------------------------------------------------------------------------- /deploy/basic/terraform/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/basic/terraform/.terraform.lock.hcl -------------------------------------------------------------------------------- /deploy/basic/terraform/atp.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/basic/terraform/atp.tf -------------------------------------------------------------------------------- /deploy/basic/terraform/compute.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/basic/terraform/compute.tf -------------------------------------------------------------------------------- /deploy/basic/terraform/datasources.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/basic/terraform/datasources.tf -------------------------------------------------------------------------------- /deploy/basic/terraform/kms.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/basic/terraform/kms.tf -------------------------------------------------------------------------------- /deploy/basic/terraform/loadbalancer.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/basic/terraform/loadbalancer.tf -------------------------------------------------------------------------------- /deploy/basic/terraform/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/basic/terraform/network.tf -------------------------------------------------------------------------------- /deploy/basic/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/basic/terraform/outputs.tf -------------------------------------------------------------------------------- /deploy/basic/terraform/policies.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/basic/terraform/policies.tf -------------------------------------------------------------------------------- /deploy/basic/terraform/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/basic/terraform/providers.tf -------------------------------------------------------------------------------- /deploy/basic/terraform/schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/basic/terraform/schema.yaml -------------------------------------------------------------------------------- /deploy/basic/terraform/scripts/catalogue.template.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/basic/terraform/scripts/catalogue.template.sql -------------------------------------------------------------------------------- /deploy/basic/terraform/scripts/cloud-config.template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/basic/terraform/scripts/cloud-config.template.yaml -------------------------------------------------------------------------------- /deploy/basic/terraform/scripts/deploy.template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/basic/terraform/scripts/deploy.template.sh -------------------------------------------------------------------------------- /deploy/basic/terraform/scripts/docker_entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/basic/terraform/scripts/docker_entrypoint.sh -------------------------------------------------------------------------------- /deploy/basic/terraform/scripts/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/basic/terraform/scripts/httpd.conf -------------------------------------------------------------------------------- /deploy/basic/terraform/scripts/mushop_media_pars_list.txt: -------------------------------------------------------------------------------- 1 | ${content} -------------------------------------------------------------------------------- /deploy/basic/terraform/scripts/setup.preflight.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/basic/terraform/scripts/setup.preflight.sh -------------------------------------------------------------------------------- /deploy/basic/terraform/scripts/setup.template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/basic/terraform/scripts/setup.template.sh -------------------------------------------------------------------------------- /deploy/basic/terraform/security-lists.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/basic/terraform/security-lists.tf -------------------------------------------------------------------------------- /deploy/basic/terraform/storage.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/basic/terraform/storage.tf -------------------------------------------------------------------------------- /deploy/basic/terraform/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/basic/terraform/terraform.tfvars.example -------------------------------------------------------------------------------- /deploy/basic/terraform/tf_msz.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/basic/terraform/tf_msz.tfvars.example -------------------------------------------------------------------------------- /deploy/basic/terraform/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/basic/terraform/variables.tf -------------------------------------------------------------------------------- /deploy/complete/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/Makefile -------------------------------------------------------------------------------- /deploy/complete/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/README.md -------------------------------------------------------------------------------- /deploy/complete/VERSION: -------------------------------------------------------------------------------- 1 | 3.3.0 2 | -------------------------------------------------------------------------------- /deploy/complete/aws-cloudformation/docdb.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/aws-cloudformation/docdb.yaml -------------------------------------------------------------------------------- /deploy/complete/aws-cloudformation/msk.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/aws-cloudformation/msk.yaml -------------------------------------------------------------------------------- /deploy/complete/aws-cloudformation/mushop-entrypoint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/aws-cloudformation/mushop-entrypoint.yaml -------------------------------------------------------------------------------- /deploy/complete/aws-cloudformation/mushop-utilities.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/aws-cloudformation/mushop-utilities.yaml -------------------------------------------------------------------------------- /deploy/complete/aws-cloudformation/mushop.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/aws-cloudformation/mushop.yml -------------------------------------------------------------------------------- /deploy/complete/aws-cloudformation/rds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/aws-cloudformation/rds.yaml -------------------------------------------------------------------------------- /deploy/complete/docker-compose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/docker-compose/README.md -------------------------------------------------------------------------------- /deploy/complete/docker-compose/dbinit/init.carts.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/docker-compose/dbinit/init.carts.sql -------------------------------------------------------------------------------- /deploy/complete/docker-compose/dbinit/init.catalogue.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/docker-compose/dbinit/init.catalogue.sql -------------------------------------------------------------------------------- /deploy/complete/docker-compose/dbinit/init.orders.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/docker-compose/dbinit/init.orders.sql -------------------------------------------------------------------------------- /deploy/complete/docker-compose/dbinit/init.user.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/docker-compose/dbinit/init.user.sql -------------------------------------------------------------------------------- /deploy/complete/docker-compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/docker-compose/docker-compose.yml -------------------------------------------------------------------------------- /deploy/complete/helm-chart/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/.gitignore -------------------------------------------------------------------------------- /deploy/complete/helm-chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/README.md -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/mushop/.helmignore -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/mushop/Chart.yaml -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/charts/api/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/mushop/charts/api/.helmignore -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/charts/api/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/mushop/charts/api/Chart.yaml -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/charts/api/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/charts/api/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/mushop/charts/api/values.yaml -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/charts/assets/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/mushop/charts/assets/Chart.yaml -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/charts/assets/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/charts/carts/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/mushop/charts/carts/.helmignore -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/charts/carts/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/mushop/charts/carts/Chart.yaml -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/charts/carts/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/charts/carts/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/mushop/charts/carts/values.yaml -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/charts/catalogue/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/charts/edge/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/mushop/charts/edge/.helmignore -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/charts/edge/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/mushop/charts/edge/Chart.yaml -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/charts/edge/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/charts/edge/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/mushop/charts/edge/values.yaml -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/charts/events/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/mushop/charts/events/Chart.yaml -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/charts/events/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/charts/fulfillment/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/charts/nats/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/mushop/charts/nats/.helmignore -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/charts/nats/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/mushop/charts/nats/Chart.yaml -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/charts/nats/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/charts/nats/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/mushop/charts/nats/values.yaml -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/charts/orders/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/mushop/charts/orders/Chart.yaml -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/charts/orders/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/charts/payment/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/charts/session/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/charts/storefront/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/charts/user/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/mushop/charts/user/.helmignore -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/charts/user/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/mushop/charts/user/Chart.yaml -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/charts/user/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/charts/user/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/mushop/charts/user/values.yaml -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/mushop/requirements.yaml -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/mushop/templates/NOTES.txt -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/mushop/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/values-aws.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/mushop/values-aws.yaml -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/values-dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/mushop/values-dev.yaml -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/values-prod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/mushop/values-prod.yaml -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/values-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/mushop/values-test.yaml -------------------------------------------------------------------------------- /deploy/complete/helm-chart/mushop/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/mushop/values.yaml -------------------------------------------------------------------------------- /deploy/complete/helm-chart/provision/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/provision/.helmignore -------------------------------------------------------------------------------- /deploy/complete/helm-chart/provision/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/provision/Chart.yaml -------------------------------------------------------------------------------- /deploy/complete/helm-chart/provision/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/provision/README.md -------------------------------------------------------------------------------- /deploy/complete/helm-chart/provision/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/provision/templates/NOTES.txt -------------------------------------------------------------------------------- /deploy/complete/helm-chart/provision/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/provision/values.yaml -------------------------------------------------------------------------------- /deploy/complete/helm-chart/setup/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/setup/.helmignore -------------------------------------------------------------------------------- /deploy/complete/helm-chart/setup/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/setup/Chart.yaml -------------------------------------------------------------------------------- /deploy/complete/helm-chart/setup/requirements.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/setup/requirements.yaml -------------------------------------------------------------------------------- /deploy/complete/helm-chart/setup/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/setup/templates/NOTES.txt -------------------------------------------------------------------------------- /deploy/complete/helm-chart/setup/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/setup/templates/_helpers.tpl -------------------------------------------------------------------------------- /deploy/complete/helm-chart/setup/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/helm-chart/setup/values.yaml -------------------------------------------------------------------------------- /deploy/complete/terraform/.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/terraform/.terraform.lock.hcl -------------------------------------------------------------------------------- /deploy/complete/terraform/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/terraform/CHANGELOG.md -------------------------------------------------------------------------------- /deploy/complete/terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/terraform/README.md -------------------------------------------------------------------------------- /deploy/complete/terraform/chart-values/grafana-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/terraform/chart-values/grafana-values.yaml -------------------------------------------------------------------------------- /deploy/complete/terraform/chart-values/metrics-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/terraform/chart-values/metrics-server.yaml -------------------------------------------------------------------------------- /deploy/complete/terraform/datasources.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/terraform/datasources.tf -------------------------------------------------------------------------------- /deploy/complete/terraform/mushop-oci-services.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/terraform/mushop-oci-services.tf -------------------------------------------------------------------------------- /deploy/complete/terraform/mushop-outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/terraform/mushop-outputs.tf -------------------------------------------------------------------------------- /deploy/complete/terraform/mushop-utilities.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/terraform/mushop-utilities.tf -------------------------------------------------------------------------------- /deploy/complete/terraform/mushop-variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/terraform/mushop-variables.tf -------------------------------------------------------------------------------- /deploy/complete/terraform/mushop.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/terraform/mushop.tf -------------------------------------------------------------------------------- /deploy/complete/terraform/ofn-variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/terraform/ofn-variables.tf -------------------------------------------------------------------------------- /deploy/complete/terraform/ofn.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/terraform/ofn.tf -------------------------------------------------------------------------------- /deploy/complete/terraform/oke-autoscaler.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/terraform/oke-autoscaler.tf -------------------------------------------------------------------------------- /deploy/complete/terraform/oke-network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/terraform/oke-network.tf -------------------------------------------------------------------------------- /deploy/complete/terraform/oke-outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/terraform/oke-outputs.tf -------------------------------------------------------------------------------- /deploy/complete/terraform/oke-security-lists.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/terraform/oke-security-lists.tf -------------------------------------------------------------------------------- /deploy/complete/terraform/oke-variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/terraform/oke-variables.tf -------------------------------------------------------------------------------- /deploy/complete/terraform/oke.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/terraform/oke.tf -------------------------------------------------------------------------------- /deploy/complete/terraform/oss-variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/terraform/oss-variables.tf -------------------------------------------------------------------------------- /deploy/complete/terraform/oss.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/terraform/oss.tf -------------------------------------------------------------------------------- /deploy/complete/terraform/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/terraform/outputs.tf -------------------------------------------------------------------------------- /deploy/complete/terraform/policies.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/terraform/policies.tf -------------------------------------------------------------------------------- /deploy/complete/terraform/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/terraform/providers.tf -------------------------------------------------------------------------------- /deploy/complete/terraform/schema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/terraform/schema.yaml -------------------------------------------------------------------------------- /deploy/complete/terraform/terraform.tfvars.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/deploy/complete/terraform/terraform.tfvars.example -------------------------------------------------------------------------------- /images/basic/00-Free-Tier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/images/basic/00-Free-Tier.png -------------------------------------------------------------------------------- /images/basic/00-Topology-v1.2.0.MSZ-demo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/images/basic/00-Topology-v1.2.0.MSZ-demo.svg -------------------------------------------------------------------------------- /images/basic/00-Topology-v1.2.0.MSZ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/images/basic/00-Topology-v1.2.0.MSZ.svg -------------------------------------------------------------------------------- /images/basic/00-Topology-v1.2.0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/images/basic/00-Topology-v1.2.0.svg -------------------------------------------------------------------------------- /images/basic/00-Topology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/images/basic/00-Topology.png -------------------------------------------------------------------------------- /images/complete/00-Topology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/images/complete/00-Topology.png -------------------------------------------------------------------------------- /images/icon/mushop-zip-file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/images/icon/mushop-zip-file.svg -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/screenshot/mushop.about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/images/screenshot/mushop.about.png -------------------------------------------------------------------------------- /images/screenshot/mushop.browse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/images/screenshot/mushop.browse.png -------------------------------------------------------------------------------- /images/screenshot/mushop.cart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/images/screenshot/mushop.cart.png -------------------------------------------------------------------------------- /images/screenshot/mushop.home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/images/screenshot/mushop.home.png -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/README.md -------------------------------------------------------------------------------- /src/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/README.md -------------------------------------------------------------------------------- /src/api/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/app/build.gradle -------------------------------------------------------------------------------- /src/api/app/openapi.properties: -------------------------------------------------------------------------------- 1 | swagger-ui.enabled=true -------------------------------------------------------------------------------- /src/api/app/src/main/java/api/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/app/src/main/java/api/Application.java -------------------------------------------------------------------------------- /src/api/app/src/main/java/api/auth/LoginController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/app/src/main/java/api/auth/LoginController.java -------------------------------------------------------------------------------- /src/api/app/src/main/java/api/model/AddressInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/app/src/main/java/api/model/AddressInfo.java -------------------------------------------------------------------------------- /src/api/app/src/main/java/api/model/AssetsLocation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/app/src/main/java/api/model/AssetsLocation.java -------------------------------------------------------------------------------- /src/api/app/src/main/java/api/model/CardInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/app/src/main/java/api/model/CardInfo.java -------------------------------------------------------------------------------- /src/api/app/src/main/java/api/model/CatalogueItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/app/src/main/java/api/model/CatalogueItem.java -------------------------------------------------------------------------------- /src/api/app/src/main/java/api/model/Categories.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/app/src/main/java/api/model/Categories.java -------------------------------------------------------------------------------- /src/api/app/src/main/java/api/model/Event.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/app/src/main/java/api/model/Event.java -------------------------------------------------------------------------------- /src/api/app/src/main/java/api/model/MuUserDetails.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/app/src/main/java/api/model/MuUserDetails.java -------------------------------------------------------------------------------- /src/api/app/src/main/java/api/model/Product.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/app/src/main/java/api/model/Product.java -------------------------------------------------------------------------------- /src/api/app/src/main/java/api/model/UserDetail.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/app/src/main/java/api/model/UserDetail.java -------------------------------------------------------------------------------- /src/api/app/src/main/java/api/services/AssetsClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/app/src/main/java/api/services/AssetsClient.java -------------------------------------------------------------------------------- /src/api/app/src/main/java/api/services/AssetsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/app/src/main/java/api/services/AssetsService.java -------------------------------------------------------------------------------- /src/api/app/src/main/java/api/services/AuthClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/app/src/main/java/api/services/AuthClient.java -------------------------------------------------------------------------------- /src/api/app/src/main/java/api/services/CartsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/app/src/main/java/api/services/CartsService.java -------------------------------------------------------------------------------- /src/api/app/src/main/java/api/services/ConfigService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/app/src/main/java/api/services/ConfigService.java -------------------------------------------------------------------------------- /src/api/app/src/main/java/api/services/EventsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/app/src/main/java/api/services/EventsService.java -------------------------------------------------------------------------------- /src/api/app/src/main/java/api/services/OrdersService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/app/src/main/java/api/services/OrdersService.java -------------------------------------------------------------------------------- /src/api/app/src/main/java/api/services/ServiceLocator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/app/src/main/java/api/services/ServiceLocator.java -------------------------------------------------------------------------------- /src/api/app/src/main/java/api/services/UsersClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/app/src/main/java/api/services/UsersClient.java -------------------------------------------------------------------------------- /src/api/app/src/main/java/api/services/UsersService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/app/src/main/java/api/services/UsersService.java -------------------------------------------------------------------------------- /src/api/app/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/app/src/main/resources/application.yml -------------------------------------------------------------------------------- /src/api/app/src/main/resources/bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/app/src/main/resources/bootstrap.yml -------------------------------------------------------------------------------- /src/api/app/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/app/src/main/resources/logback.xml -------------------------------------------------------------------------------- /src/api/app/src/test/java/api/AssetsServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/app/src/test/java/api/AssetsServiceTest.java -------------------------------------------------------------------------------- /src/api/app/src/test/java/api/CartsServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/app/src/test/java/api/CartsServiceTest.java -------------------------------------------------------------------------------- /src/api/app/src/test/java/api/CatalogueServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/app/src/test/java/api/CatalogueServiceTest.java -------------------------------------------------------------------------------- /src/api/app/src/test/java/api/OrdersServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/app/src/test/java/api/OrdersServiceTest.java -------------------------------------------------------------------------------- /src/api/app/src/test/java/api/PlaceOrderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/app/src/test/java/api/PlaceOrderTest.java -------------------------------------------------------------------------------- /src/api/app/src/test/java/api/UsersServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/app/src/test/java/api/UsersServiceTest.java -------------------------------------------------------------------------------- /src/api/aws/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/aws/build.gradle -------------------------------------------------------------------------------- /src/api/aws/src/main/java/api/AwsApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/aws/src/main/java/api/AwsApplication.java -------------------------------------------------------------------------------- /src/api/aws/src/main/resources/application-ec2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/aws/src/main/resources/application-ec2.yml -------------------------------------------------------------------------------- /src/api/aws/src/test/java/api/CartsServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/aws/src/test/java/api/CartsServiceTest.java -------------------------------------------------------------------------------- /src/api/aws/src/test/java/api/CatalogueServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/aws/src/test/java/api/CatalogueServiceTest.java -------------------------------------------------------------------------------- /src/api/aws/src/test/java/api/OrdersServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/aws/src/test/java/api/OrdersServiceTest.java -------------------------------------------------------------------------------- /src/api/aws/src/test/java/api/PlaceOrderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/aws/src/test/java/api/PlaceOrderTest.java -------------------------------------------------------------------------------- /src/api/aws/src/test/java/api/UsersServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/aws/src/test/java/api/UsersServiceTest.java -------------------------------------------------------------------------------- /src/api/aws/src/test/resources/application-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/aws/src/test/resources/application-test.yml -------------------------------------------------------------------------------- /src/api/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/gradle.properties -------------------------------------------------------------------------------- /src/api/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/api/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /src/api/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/gradlew -------------------------------------------------------------------------------- /src/api/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/gradlew.bat -------------------------------------------------------------------------------- /src/api/oci/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/oci/build.gradle -------------------------------------------------------------------------------- /src/api/oci/src/main/java/api/OciApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/oci/src/main/java/api/OciApplication.java -------------------------------------------------------------------------------- /src/api/oci/src/main/resources/application-oraclecloud.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/oci/src/main/resources/application-oraclecloud.yml -------------------------------------------------------------------------------- /src/api/oci/src/test/java/api/CartsServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/oci/src/test/java/api/CartsServiceTest.java -------------------------------------------------------------------------------- /src/api/oci/src/test/java/api/CatalogueServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/oci/src/test/java/api/CatalogueServiceTest.java -------------------------------------------------------------------------------- /src/api/oci/src/test/java/api/OrdersServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/oci/src/test/java/api/OrdersServiceTest.java -------------------------------------------------------------------------------- /src/api/oci/src/test/java/api/PlaceOrderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/oci/src/test/java/api/PlaceOrderTest.java -------------------------------------------------------------------------------- /src/api/oci/src/test/java/api/UsersServiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/oci/src/test/java/api/UsersServiceTest.java -------------------------------------------------------------------------------- /src/api/oci/src/test/resources/application-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/oci/src/test/resources/application-test.yml -------------------------------------------------------------------------------- /src/api/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/settings.gradle -------------------------------------------------------------------------------- /src/api/tck/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/tck/build.gradle -------------------------------------------------------------------------------- /src/api/tck/src/main/java/api/AbstractPlaceOrderTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/tck/src/main/java/api/AbstractPlaceOrderTest.java -------------------------------------------------------------------------------- /src/api/tck/src/main/java/api/MockAuth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/api/tck/src/main/java/api/MockAuth.java -------------------------------------------------------------------------------- /src/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/assets/README.md -------------------------------------------------------------------------------- /src/assets/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/assets/app/build.gradle -------------------------------------------------------------------------------- /src/assets/app/openapi.properties: -------------------------------------------------------------------------------- 1 | swagger-ui.enabled=true -------------------------------------------------------------------------------- /src/assets/app/src/main/java/assets/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/assets/app/src/main/java/assets/Application.java -------------------------------------------------------------------------------- /src/assets/app/src/main/resources/application-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/assets/app/src/main/resources/application-app.yml -------------------------------------------------------------------------------- /src/assets/app/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/assets/app/src/main/resources/application.yml -------------------------------------------------------------------------------- /src/assets/app/src/main/resources/bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/assets/app/src/main/resources/bootstrap.yml -------------------------------------------------------------------------------- /src/assets/app/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/assets/app/src/main/resources/logback.xml -------------------------------------------------------------------------------- /src/assets/app/src/test/java/assets/AssetsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/assets/app/src/test/java/assets/AssetsTest.java -------------------------------------------------------------------------------- /src/assets/app/src/test/resources/application-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/assets/app/src/test/resources/application-test.yml -------------------------------------------------------------------------------- /src/assets/aws/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/assets/aws/build.gradle -------------------------------------------------------------------------------- /src/assets/aws/src/main/java/assets/AwsApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/assets/aws/src/main/java/assets/AwsApplication.java -------------------------------------------------------------------------------- /src/assets/aws/src/main/resources/application-ec2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/assets/aws/src/main/resources/application-ec2.yml -------------------------------------------------------------------------------- /src/assets/aws/src/main/resources/bootstrap-ec2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/assets/aws/src/main/resources/bootstrap-ec2.yml -------------------------------------------------------------------------------- /src/assets/aws/src/test/java/assets/AwsAssetsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/assets/aws/src/test/java/assets/AwsAssetsTest.java -------------------------------------------------------------------------------- /src/assets/aws/src/test/resources/application-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/assets/aws/src/test/resources/application-test.yml -------------------------------------------------------------------------------- /src/assets/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/assets/gradle.properties -------------------------------------------------------------------------------- /src/assets/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/assets/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/assets/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/assets/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /src/assets/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/assets/gradlew -------------------------------------------------------------------------------- /src/assets/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/assets/gradlew.bat -------------------------------------------------------------------------------- /src/assets/oci/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/assets/oci/build.gradle -------------------------------------------------------------------------------- /src/assets/oci/src/main/java/assets/OciApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/assets/oci/src/main/java/assets/OciApplication.java -------------------------------------------------------------------------------- /src/assets/oci/src/test/java/assets/OciAssetsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/assets/oci/src/test/java/assets/OciAssetsTest.java -------------------------------------------------------------------------------- /src/assets/oci/src/test/resources/application-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/assets/oci/src/test/resources/application-test.yml -------------------------------------------------------------------------------- /src/assets/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/assets/settings.gradle -------------------------------------------------------------------------------- /src/assets/tck/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/assets/tck/build.gradle -------------------------------------------------------------------------------- /src/carts/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/carts/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /src/carts/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/carts/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /src/carts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/carts/README.md -------------------------------------------------------------------------------- /src/carts/app/openapi.properties: -------------------------------------------------------------------------------- 1 | swagger-ui.enabled=true -------------------------------------------------------------------------------- /src/carts/app/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/carts/app/pom.xml -------------------------------------------------------------------------------- /src/carts/app/src/main/java/mushop/carts/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/carts/app/src/main/java/mushop/carts/Application.java -------------------------------------------------------------------------------- /src/carts/app/src/main/resources/application-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/carts/app/src/main/resources/application-app.yml -------------------------------------------------------------------------------- /src/carts/aws/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/carts/aws/pom.xml -------------------------------------------------------------------------------- /src/carts/aws/src/main/resources/application-ec2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/carts/aws/src/main/resources/application-ec2.yml -------------------------------------------------------------------------------- /src/carts/aws/src/main/resources/bootstrap-ec2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/carts/aws/src/main/resources/bootstrap-ec2.yml -------------------------------------------------------------------------------- /src/carts/aws/src/test/resources/application-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/carts/aws/src/test/resources/application-test.yml -------------------------------------------------------------------------------- /src/carts/docker/Dockerfile.base-alpine-glibc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/carts/docker/Dockerfile.base-alpine-glibc -------------------------------------------------------------------------------- /src/carts/docker/Dockerfile.base-graalvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/carts/docker/Dockerfile.base-graalvm -------------------------------------------------------------------------------- /src/carts/docker/Dockerfile.base-native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/carts/docker/Dockerfile.base-native -------------------------------------------------------------------------------- /src/carts/docker/build-and-push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/carts/docker/build-and-push.sh -------------------------------------------------------------------------------- /src/carts/docker/import-aws-rds-certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/carts/docker/import-aws-rds-certs.sh -------------------------------------------------------------------------------- /src/carts/lib/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/carts/lib/pom.xml -------------------------------------------------------------------------------- /src/carts/lib/src/main/resources/META-INF/native-image/carts-lib/native-image.properties: -------------------------------------------------------------------------------- 1 | Args = -H:IncludeResources=application.yaml|bootstrap.yml|logback.xml -------------------------------------------------------------------------------- /src/carts/lib/src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/carts/lib/src/main/resources/application.yaml -------------------------------------------------------------------------------- /src/carts/lib/src/main/resources/bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/carts/lib/src/main/resources/bootstrap.yml -------------------------------------------------------------------------------- /src/carts/lib/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/carts/lib/src/main/resources/logback.xml -------------------------------------------------------------------------------- /src/carts/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/carts/mvnw -------------------------------------------------------------------------------- /src/carts/mvnw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/carts/mvnw.bat -------------------------------------------------------------------------------- /src/carts/oci/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/carts/oci/pom.xml -------------------------------------------------------------------------------- /src/carts/oci/src/test/resources/application-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/carts/oci/src/test/resources/application-test.yml -------------------------------------------------------------------------------- /src/carts/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/carts/pom.xml -------------------------------------------------------------------------------- /src/carts/sql/examples.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/carts/sql/examples.sql -------------------------------------------------------------------------------- /src/carts/tck/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/carts/tck/pom.xml -------------------------------------------------------------------------------- /src/catalogue/.dockerignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /src/catalogue/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/catalogue/README.md -------------------------------------------------------------------------------- /src/catalogue/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/catalogue/app/build.gradle -------------------------------------------------------------------------------- /src/catalogue/app/openapi.properties: -------------------------------------------------------------------------------- 1 | swagger-ui.enabled=true -------------------------------------------------------------------------------- /src/catalogue/app/src/main/java/catalogue/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/catalogue/app/src/main/java/catalogue/Application.java -------------------------------------------------------------------------------- /src/catalogue/app/src/main/java/catalogue/db/DbSetup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/catalogue/app/src/main/java/catalogue/db/DbSetup.java -------------------------------------------------------------------------------- /src/catalogue/app/src/main/resources/application-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/catalogue/app/src/main/resources/application-app.yml -------------------------------------------------------------------------------- /src/catalogue/app/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/catalogue/app/src/main/resources/application.yml -------------------------------------------------------------------------------- /src/catalogue/app/src/main/resources/bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/catalogue/app/src/main/resources/bootstrap.yml -------------------------------------------------------------------------------- /src/catalogue/app/src/main/resources/db/catalogue_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/catalogue/app/src/main/resources/db/catalogue_data.sql -------------------------------------------------------------------------------- /src/catalogue/app/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/catalogue/app/src/main/resources/logback.xml -------------------------------------------------------------------------------- /src/catalogue/app/src/test/resources/application-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/catalogue/app/src/test/resources/application-test.yml -------------------------------------------------------------------------------- /src/catalogue/aws/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/catalogue/aws/build.gradle -------------------------------------------------------------------------------- /src/catalogue/aws/src/main/resources/application-ec2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/catalogue/aws/src/main/resources/application-ec2.yml -------------------------------------------------------------------------------- /src/catalogue/aws/src/main/resources/bootstrap-ec2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/catalogue/aws/src/main/resources/bootstrap-ec2.yml -------------------------------------------------------------------------------- /src/catalogue/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/catalogue/gradle.properties -------------------------------------------------------------------------------- /src/catalogue/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/catalogue/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/catalogue/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/catalogue/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /src/catalogue/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/catalogue/gradlew -------------------------------------------------------------------------------- /src/catalogue/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/catalogue/gradlew.bat -------------------------------------------------------------------------------- /src/catalogue/oci/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/catalogue/oci/build.gradle -------------------------------------------------------------------------------- /src/catalogue/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/catalogue/settings.gradle -------------------------------------------------------------------------------- /src/catalogue/tck/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/catalogue/tck/build.gradle -------------------------------------------------------------------------------- /src/dbtools/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/dbtools/Dockerfile -------------------------------------------------------------------------------- /src/dbtools/VERSION: -------------------------------------------------------------------------------- 1 | 21.1.0 -------------------------------------------------------------------------------- /src/dbtools/build-and-push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/dbtools/build-and-push.sh -------------------------------------------------------------------------------- /src/docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/.gitignore -------------------------------------------------------------------------------- /src/docs/.hugo_build.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/Makefile -------------------------------------------------------------------------------- /src/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/README.md -------------------------------------------------------------------------------- /src/docs/archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/archetypes/default.md -------------------------------------------------------------------------------- /src/docs/assets/sass/_config.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/assets/sass/_config.scss -------------------------------------------------------------------------------- /src/docs/assets/sass/mushop.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/assets/sass/mushop.scss -------------------------------------------------------------------------------- /src/docs/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/config.toml -------------------------------------------------------------------------------- /src/docs/content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/content/_index.md -------------------------------------------------------------------------------- /src/docs/content/acknowledgements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/content/acknowledgements.md -------------------------------------------------------------------------------- /src/docs/content/introduction/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/content/introduction/_index.md -------------------------------------------------------------------------------- /src/docs/content/micronaut/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/content/micronaut/_index.md -------------------------------------------------------------------------------- /src/docs/content/micronaut/atp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/content/micronaut/atp.md -------------------------------------------------------------------------------- /src/docs/content/micronaut/cloudnative.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/content/micronaut/cloudnative.md -------------------------------------------------------------------------------- /src/docs/content/micronaut/data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/content/micronaut/data.md -------------------------------------------------------------------------------- /src/docs/content/micronaut/deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/content/micronaut/deployment.md -------------------------------------------------------------------------------- /src/docs/content/micronaut/gateway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/content/micronaut/gateway.md -------------------------------------------------------------------------------- /src/docs/content/micronaut/httpclient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/content/micronaut/httpclient.md -------------------------------------------------------------------------------- /src/docs/content/micronaut/management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/content/micronaut/management.md -------------------------------------------------------------------------------- /src/docs/content/micronaut/messaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/content/micronaut/messaging.md -------------------------------------------------------------------------------- /src/docs/content/micronaut/metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/content/micronaut/metrics.md -------------------------------------------------------------------------------- /src/docs/content/micronaut/native.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/content/micronaut/native.md -------------------------------------------------------------------------------- /src/docs/content/micronaut/openapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/content/micronaut/openapi.md -------------------------------------------------------------------------------- /src/docs/content/micronaut/security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/content/micronaut/security.md -------------------------------------------------------------------------------- /src/docs/content/micronaut/service-discovery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/content/micronaut/service-discovery.md -------------------------------------------------------------------------------- /src/docs/content/micronaut/tracing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/content/micronaut/tracing.md -------------------------------------------------------------------------------- /src/docs/content/quickstart/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/content/quickstart/_index.md -------------------------------------------------------------------------------- /src/docs/content/quickstart/aws-cloudformation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/content/quickstart/aws-cloudformation.md -------------------------------------------------------------------------------- /src/docs/content/quickstart/dockecompose.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/content/quickstart/dockecompose.md -------------------------------------------------------------------------------- /src/docs/content/quickstart/helm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/content/quickstart/helm.md -------------------------------------------------------------------------------- /src/docs/content/quickstart/oci-terraform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/content/quickstart/oci-terraform.md -------------------------------------------------------------------------------- /src/docs/content/quickstart/terraform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/content/quickstart/terraform.md -------------------------------------------------------------------------------- /src/docs/content/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/content/resources.md -------------------------------------------------------------------------------- /src/docs/content/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/content/usage.md -------------------------------------------------------------------------------- /src/docs/data/config/settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/data/config/settings.yaml -------------------------------------------------------------------------------- /src/docs/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/deploy.sh -------------------------------------------------------------------------------- /src/docs/i18n/en.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/i18n/en.toml -------------------------------------------------------------------------------- /src/docs/layouts/partials/custom-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/layouts/partials/custom-head.html -------------------------------------------------------------------------------- /src/docs/layouts/partials/favicon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/layouts/partials/favicon.html -------------------------------------------------------------------------------- /src/docs/layouts/shortcodes/content/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/layouts/shortcodes/content/setup.md -------------------------------------------------------------------------------- /src/docs/layouts/shortcodes/ghcontribs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/layouts/shortcodes/ghcontribs.html -------------------------------------------------------------------------------- /src/docs/layouts/shortcodes/kenburns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/layouts/shortcodes/kenburns.html -------------------------------------------------------------------------------- /src/docs/static/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/static/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /src/docs/static/icons/android-chrome-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/static/icons/android-chrome-384x384.png -------------------------------------------------------------------------------- /src/docs/static/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/static/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /src/docs/static/icons/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/static/icons/browserconfig.xml -------------------------------------------------------------------------------- /src/docs/static/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/static/icons/favicon-16x16.png -------------------------------------------------------------------------------- /src/docs/static/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/static/icons/favicon-32x32.png -------------------------------------------------------------------------------- /src/docs/static/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/static/icons/favicon.ico -------------------------------------------------------------------------------- /src/docs/static/icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/static/icons/mstile-150x150.png -------------------------------------------------------------------------------- /src/docs/static/icons/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/static/icons/mstile-310x310.png -------------------------------------------------------------------------------- /src/docs/static/icons/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/static/icons/safari-pinned-tab.svg -------------------------------------------------------------------------------- /src/docs/static/icons/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/static/icons/site.webmanifest -------------------------------------------------------------------------------- /src/docs/static/images/gcn-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/static/images/gcn-logo.png -------------------------------------------------------------------------------- /src/docs/static/images/intro/arch-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/static/images/intro/arch-diagram.png -------------------------------------------------------------------------------- /src/docs/static/images/intro/cloudnative.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/static/images/intro/cloudnative.png -------------------------------------------------------------------------------- /src/docs/static/images/intro/mushop.about.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/static/images/intro/mushop.about.png -------------------------------------------------------------------------------- /src/docs/static/images/intro/mushop.home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/static/images/intro/mushop.home.png -------------------------------------------------------------------------------- /src/docs/static/images/logo.dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/static/images/logo.dark.png -------------------------------------------------------------------------------- /src/docs/static/images/logo.light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/static/images/logo.light.png -------------------------------------------------------------------------------- /src/docs/themes/gcn/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/.gitignore -------------------------------------------------------------------------------- /src/docs/themes/gcn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/LICENSE -------------------------------------------------------------------------------- /src/docs/themes/gcn/archetypes/default.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/archetypes/default.md -------------------------------------------------------------------------------- /src/docs/themes/gcn/assets/js/site/clipboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/assets/js/site/clipboard.js -------------------------------------------------------------------------------- /src/docs/themes/gcn/assets/js/site/mermaid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/assets/js/site/mermaid.js -------------------------------------------------------------------------------- /src/docs/themes/gcn/assets/js/site/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/assets/js/site/search.js -------------------------------------------------------------------------------- /src/docs/themes/gcn/assets/js/site/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/assets/js/site/settings.js -------------------------------------------------------------------------------- /src/docs/themes/gcn/assets/js/site/styling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/assets/js/site/styling.js -------------------------------------------------------------------------------- /src/docs/themes/gcn/assets/sass/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/assets/sass/fonts.scss -------------------------------------------------------------------------------- /src/docs/themes/gcn/assets/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/assets/sass/main.scss -------------------------------------------------------------------------------- /src/docs/themes/gcn/assets/sass/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/assets/sass/mixins.scss -------------------------------------------------------------------------------- /src/docs/themes/gcn/assets/sass/syntax.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/assets/sass/syntax.scss -------------------------------------------------------------------------------- /src/docs/themes/gcn/assets/sass/uk/_components.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/assets/sass/uk/_components.scss -------------------------------------------------------------------------------- /src/docs/themes/gcn/assets/sass/uk/_config.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/assets/sass/uk/_config.scss -------------------------------------------------------------------------------- /src/docs/themes/gcn/assets/sass/uk/_hooks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/assets/sass/uk/_hooks.scss -------------------------------------------------------------------------------- /src/docs/themes/gcn/assets/sass/uk/_settings.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/assets/sass/uk/_settings.scss -------------------------------------------------------------------------------- /src/docs/themes/gcn/assets/sass/uk/_uikit.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/assets/sass/uk/_uikit.scss -------------------------------------------------------------------------------- /src/docs/themes/gcn/assets/sass/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/assets/sass/variables.scss -------------------------------------------------------------------------------- /src/docs/themes/gcn/data/config/scripts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/data/config/scripts.yaml -------------------------------------------------------------------------------- /src/docs/themes/gcn/i18n/en.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/i18n/en.toml -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/404.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/_default/baseof.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/_default/list.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/_default/single.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/index.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/index.json -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/partials/_close.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/partials/_close.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/partials/_open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/partials/_open.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/partials/custom-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/partials/custom-footer.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/partials/custom-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/partials/custom-head.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/partials/custom-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/partials/custom-header.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/partials/custom-settings.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/partials/favicon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/partials/favicon.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/partials/footer.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/partials/head.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/partials/header.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/partials/menu-footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/partials/menu-footer.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/partials/menu-settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/partials/menu-settings.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/partials/menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/partials/menu.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/partials/meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/partials/meta.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/partials/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/partials/scripts.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/partials/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/partials/search.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/partials/tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/partials/tags.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/partials/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/partials/toc.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/shortcodes/alert.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/shortcodes/alert.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/shortcodes/aspect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/shortcodes/aspect.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/shortcodes/card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/shortcodes/card.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/shortcodes/grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/shortcodes/grid.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/shortcodes/icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/shortcodes/icon.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/shortcodes/list/item.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/shortcodes/list/item.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/shortcodes/mermaid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/shortcodes/mermaid.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/shortcodes/overflow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/shortcodes/overflow.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/shortcodes/slideshow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/shortcodes/slideshow.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/shortcodes/switcher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/shortcodes/switcher.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/shortcodes/width.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/shortcodes/width.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/layouts/shortcodes/wrapper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/layouts/shortcodes/wrapper.html -------------------------------------------------------------------------------- /src/docs/themes/gcn/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/package-lock.json -------------------------------------------------------------------------------- /src/docs/themes/gcn/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/package.json -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_Bd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_Bd.ttf -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_Bd.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_Bd.woff -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_Bd.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_Bd.woff2 -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_BdIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_BdIt.ttf -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_BdIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_BdIt.woff -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_BdIt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_BdIt.woff2 -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_It.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_It.ttf -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_It.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_It.woff -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_It.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_It.woff2 -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_Lt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_Lt.ttf -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_Lt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_Lt.woff -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_Lt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_Lt.woff2 -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_LtIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_LtIt.ttf -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_LtIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_LtIt.woff -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_LtIt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_LtIt.woff2 -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_Rg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_Rg.ttf -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_Rg.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_Rg.woff -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_Rg.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_Rg.woff2 -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_SBd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_SBd.ttf -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_SBd.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_SBd.woff -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_SBd.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_SBd.woff2 -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_SBdIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_SBdIt.ttf -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_SBdIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_SBdIt.woff -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_SBdIt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_SBdIt.woff2 -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_ULt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_ULt.ttf -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_ULt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_ULt.woff -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_ULt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_ULt.woff2 -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_ULtIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_ULtIt.ttf -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_ULtIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_ULtIt.woff -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_ULtIt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_ULtIt.woff2 -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_XBd.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_XBd.ttf -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_XBd.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_XBd.woff -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_XBd.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_XBd.woff2 -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_XBdIt.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_XBdIt.ttf -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_XBdIt.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_XBdIt.woff -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/fonts/OracleSans_XBdIt.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/fonts/OracleSans_XBdIt.woff2 -------------------------------------------------------------------------------- /src/docs/themes/gcn/static/images/oracle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/static/images/oracle.svg -------------------------------------------------------------------------------- /src/docs/themes/gcn/theme.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/docs/themes/gcn/theme.toml -------------------------------------------------------------------------------- /src/edge-router/.dockerignore: -------------------------------------------------------------------------------- 1 | scripts 2 | edge.yaml -------------------------------------------------------------------------------- /src/edge-router/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/edge-router/Dockerfile -------------------------------------------------------------------------------- /src/edge-router/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/edge-router/README.md -------------------------------------------------------------------------------- /src/edge-router/VERSION: -------------------------------------------------------------------------------- 1 | 1.1.0 -------------------------------------------------------------------------------- /src/edge-router/build-and-push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/edge-router/build-and-push.sh -------------------------------------------------------------------------------- /src/edge-router/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/edge-router/docker-compose.yml -------------------------------------------------------------------------------- /src/edge-router/edge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/edge-router/edge.yaml -------------------------------------------------------------------------------- /src/edge-router/scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/edge-router/scripts/build.sh -------------------------------------------------------------------------------- /src/edge-router/scripts/push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/edge-router/scripts/push.sh -------------------------------------------------------------------------------- /src/edge-router/traefik.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/edge-router/traefik.toml -------------------------------------------------------------------------------- /src/events/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/events/README.md -------------------------------------------------------------------------------- /src/events/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/events/app/build.gradle -------------------------------------------------------------------------------- /src/events/app/openapi.properties: -------------------------------------------------------------------------------- 1 | swagger-ui.enabled=true -------------------------------------------------------------------------------- /src/events/app/src/main/java/events/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/events/app/src/main/java/events/Application.java -------------------------------------------------------------------------------- /src/events/app/src/main/java/events/model/Event.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/events/app/src/main/java/events/model/Event.java -------------------------------------------------------------------------------- /src/events/app/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/events/app/src/main/resources/application.yml -------------------------------------------------------------------------------- /src/events/app/src/main/resources/bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/events/app/src/main/resources/bootstrap.yml -------------------------------------------------------------------------------- /src/events/app/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/events/app/src/main/resources/logback.xml -------------------------------------------------------------------------------- /src/events/app/src/test/java/events/EventsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/events/app/src/test/java/events/EventsTest.java -------------------------------------------------------------------------------- /src/events/aws/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/events/aws/build.gradle -------------------------------------------------------------------------------- /src/events/aws/src/main/java/events/AwsApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/events/aws/src/main/java/events/AwsApplication.java -------------------------------------------------------------------------------- /src/events/aws/src/main/resources/application-ec2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/events/aws/src/main/resources/application-ec2.yml -------------------------------------------------------------------------------- /src/events/aws/src/main/resources/bootstrap-ec2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/events/aws/src/main/resources/bootstrap-ec2.yml -------------------------------------------------------------------------------- /src/events/aws/src/test/java/events/EventsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/events/aws/src/test/java/events/EventsTest.java -------------------------------------------------------------------------------- /src/events/aws/src/test/resources/application-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/events/aws/src/test/resources/application-test.yml -------------------------------------------------------------------------------- /src/events/buildSrc/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/events/buildSrc/build.gradle -------------------------------------------------------------------------------- /src/events/docker/Dockerfile.kafkaclient: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/events/docker/Dockerfile.kafkaclient -------------------------------------------------------------------------------- /src/events/docker/aws.cli.pgp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/events/docker/aws.cli.pgp -------------------------------------------------------------------------------- /src/events/docker/build-and-push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/events/docker/build-and-push.sh -------------------------------------------------------------------------------- /src/events/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/events/gradle.properties -------------------------------------------------------------------------------- /src/events/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/events/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/events/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/events/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /src/events/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/events/gradlew -------------------------------------------------------------------------------- /src/events/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/events/gradlew.bat -------------------------------------------------------------------------------- /src/events/oci/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/events/oci/build.gradle -------------------------------------------------------------------------------- /src/events/oci/src/main/java/events/OciApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/events/oci/src/main/java/events/OciApplication.java -------------------------------------------------------------------------------- /src/events/oci/src/test/java/events/EventsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/events/oci/src/test/java/events/EventsTest.java -------------------------------------------------------------------------------- /src/events/oci/src/test/resources/application-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/events/oci/src/test/resources/application-test.yml -------------------------------------------------------------------------------- /src/events/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/events/settings.gradle -------------------------------------------------------------------------------- /src/events/tck/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/events/tck/build.gradle -------------------------------------------------------------------------------- /src/fulfillment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/fulfillment/README.md -------------------------------------------------------------------------------- /src/fulfillment/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/fulfillment/app/build.gradle -------------------------------------------------------------------------------- /src/fulfillment/app/openapi.properties: -------------------------------------------------------------------------------- 1 | swagger-ui.enabled=true -------------------------------------------------------------------------------- /src/fulfillment/app/src/main/java/mushop/Shipment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/fulfillment/app/src/main/java/mushop/Shipment.java -------------------------------------------------------------------------------- /src/fulfillment/app/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/fulfillment/app/src/main/resources/application.yml -------------------------------------------------------------------------------- /src/fulfillment/app/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/fulfillment/app/src/main/resources/logback.xml -------------------------------------------------------------------------------- /src/fulfillment/aws/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/fulfillment/aws/build.gradle -------------------------------------------------------------------------------- /src/fulfillment/buildSrc/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/fulfillment/buildSrc/build.gradle -------------------------------------------------------------------------------- /src/fulfillment/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/fulfillment/gradle.properties -------------------------------------------------------------------------------- /src/fulfillment/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/fulfillment/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/fulfillment/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/fulfillment/gradlew -------------------------------------------------------------------------------- /src/fulfillment/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/fulfillment/gradlew.bat -------------------------------------------------------------------------------- /src/fulfillment/oci/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/fulfillment/oci/build.gradle -------------------------------------------------------------------------------- /src/fulfillment/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/fulfillment/settings.gradle -------------------------------------------------------------------------------- /src/fulfillment/tck/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/fulfillment/tck/build.gradle -------------------------------------------------------------------------------- /src/functions/newsletter-subscription/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/functions/newsletter-subscription/.gitignore -------------------------------------------------------------------------------- /src/functions/newsletter-subscription/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/functions/newsletter-subscription/README.md -------------------------------------------------------------------------------- /src/functions/newsletter-subscription/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/functions/newsletter-subscription/build.gradle -------------------------------------------------------------------------------- /src/functions/newsletter-subscription/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/functions/newsletter-subscription/gradle.properties -------------------------------------------------------------------------------- /src/functions/newsletter-subscription/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/functions/newsletter-subscription/gradlew -------------------------------------------------------------------------------- /src/functions/newsletter-subscription/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/functions/newsletter-subscription/gradlew.bat -------------------------------------------------------------------------------- /src/functions/newsletter-subscription/micronaut-cli.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/functions/newsletter-subscription/micronaut-cli.yml -------------------------------------------------------------------------------- /src/functions/newsletter-subscription/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name="newsletter-subscription" 2 | -------------------------------------------------------------------------------- /src/load/.dockerignore: -------------------------------------------------------------------------------- 1 | scripts 2 | load-dep.yaml -------------------------------------------------------------------------------- /src/load/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/load/Dockerfile -------------------------------------------------------------------------------- /src/load/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/load/README.md -------------------------------------------------------------------------------- /src/load/VERSION: -------------------------------------------------------------------------------- 1 | 2.0.0 -------------------------------------------------------------------------------- /src/load/load-dep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/load/load-dep.yaml -------------------------------------------------------------------------------- /src/load/locustfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/load/locustfile.py -------------------------------------------------------------------------------- /src/load/runLocust.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/load/runLocust.sh -------------------------------------------------------------------------------- /src/load/scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/load/scripts/build.sh -------------------------------------------------------------------------------- /src/load/scripts/push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/load/scripts/push.sh -------------------------------------------------------------------------------- /src/orders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/orders/README.md -------------------------------------------------------------------------------- /src/orders/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/orders/app/build.gradle -------------------------------------------------------------------------------- /src/orders/app/openapi.properties: -------------------------------------------------------------------------------- 1 | swagger-ui.enabled=true -------------------------------------------------------------------------------- /src/orders/app/src/main/resources/application-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/orders/app/src/main/resources/application-app.yml -------------------------------------------------------------------------------- /src/orders/app/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/orders/app/src/main/resources/application.yml -------------------------------------------------------------------------------- /src/orders/app/src/main/resources/bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/orders/app/src/main/resources/bootstrap.yml -------------------------------------------------------------------------------- /src/orders/app/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/orders/app/src/main/resources/logback.xml -------------------------------------------------------------------------------- /src/orders/app/src/test/resources/application-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/orders/app/src/test/resources/application-test.yml -------------------------------------------------------------------------------- /src/orders/aws/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/orders/aws/build.gradle -------------------------------------------------------------------------------- /src/orders/aws/src/main/resources/application-ec2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/orders/aws/src/main/resources/application-ec2.yml -------------------------------------------------------------------------------- /src/orders/aws/src/main/resources/bootstrap-ec2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/orders/aws/src/main/resources/bootstrap-ec2.yml -------------------------------------------------------------------------------- /src/orders/aws/src/test/resources/application-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/orders/aws/src/test/resources/application-test.yml -------------------------------------------------------------------------------- /src/orders/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/orders/gradle.properties -------------------------------------------------------------------------------- /src/orders/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/orders/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/orders/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/orders/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /src/orders/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/orders/gradlew -------------------------------------------------------------------------------- /src/orders/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/orders/gradlew.bat -------------------------------------------------------------------------------- /src/orders/oci/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/orders/oci/build.gradle -------------------------------------------------------------------------------- /src/orders/oci/src/test/resources/application-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/orders/oci/src/test/resources/application-test.yml -------------------------------------------------------------------------------- /src/orders/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/orders/settings.gradle -------------------------------------------------------------------------------- /src/orders/tck/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/orders/tck/build.gradle -------------------------------------------------------------------------------- /src/payment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/payment/README.md -------------------------------------------------------------------------------- /src/payment/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/payment/app/build.gradle -------------------------------------------------------------------------------- /src/payment/app/openapi.properties: -------------------------------------------------------------------------------- 1 | swagger-ui.enabled=true -------------------------------------------------------------------------------- /src/payment/app/src/main/java/payment/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/payment/app/src/main/java/payment/Application.java -------------------------------------------------------------------------------- /src/payment/app/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/payment/app/src/main/resources/application.yml -------------------------------------------------------------------------------- /src/payment/app/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/payment/app/src/main/resources/logback.xml -------------------------------------------------------------------------------- /src/payment/app/src/test/java/payment/PaymentTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/payment/app/src/test/java/payment/PaymentTest.java -------------------------------------------------------------------------------- /src/payment/aws/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/payment/aws/build.gradle -------------------------------------------------------------------------------- /src/payment/aws/src/main/resources/application-ec2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/payment/aws/src/main/resources/application-ec2.yml -------------------------------------------------------------------------------- /src/payment/aws/src/test/java/payment/PaymentTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/payment/aws/src/test/java/payment/PaymentTest.java -------------------------------------------------------------------------------- /src/payment/aws/src/test/resources/application-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/payment/aws/src/test/resources/application-test.yml -------------------------------------------------------------------------------- /src/payment/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/payment/gradle.properties -------------------------------------------------------------------------------- /src/payment/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/payment/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/payment/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/payment/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /src/payment/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/payment/gradlew -------------------------------------------------------------------------------- /src/payment/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/payment/gradlew.bat -------------------------------------------------------------------------------- /src/payment/oci/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/payment/oci/build.gradle -------------------------------------------------------------------------------- /src/payment/oci/src/test/java/payment/PaymentTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/payment/oci/src/test/java/payment/PaymentTest.java -------------------------------------------------------------------------------- /src/payment/oci/src/test/resources/application-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/payment/oci/src/test/resources/application-test.yml -------------------------------------------------------------------------------- /src/payment/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/payment/settings.gradle -------------------------------------------------------------------------------- /src/payment/tck/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/payment/tck/build.gradle -------------------------------------------------------------------------------- /src/storefront/.dockerignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .env 3 | build 4 | coverage 5 | node_modules 6 | Makefile -------------------------------------------------------------------------------- /src/storefront/.eslintignore: -------------------------------------------------------------------------------- 1 | coverage 2 | build -------------------------------------------------------------------------------- /src/storefront/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/.eslintrc -------------------------------------------------------------------------------- /src/storefront/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .env 3 | build 4 | coverage 5 | node_modules -------------------------------------------------------------------------------- /src/storefront/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/Dockerfile -------------------------------------------------------------------------------- /src/storefront/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/Makefile -------------------------------------------------------------------------------- /src/storefront/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/README.md -------------------------------------------------------------------------------- /src/storefront/THIRDPARTY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/THIRDPARTY.md -------------------------------------------------------------------------------- /src/storefront/VERSION: -------------------------------------------------------------------------------- 1 | 2.1.2 -------------------------------------------------------------------------------- /src/storefront/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/babel.config.js -------------------------------------------------------------------------------- /src/storefront/build-and-push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/build-and-push.sh -------------------------------------------------------------------------------- /src/storefront/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/gulpfile.js -------------------------------------------------------------------------------- /src/storefront/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/jest.config.js -------------------------------------------------------------------------------- /src/storefront/nginx/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/nginx/default.conf -------------------------------------------------------------------------------- /src/storefront/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/nginx/nginx.conf -------------------------------------------------------------------------------- /src/storefront/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/package-lock.json -------------------------------------------------------------------------------- /src/storefront/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/package.json -------------------------------------------------------------------------------- /src/storefront/scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/scripts/build.sh -------------------------------------------------------------------------------- /src/storefront/scripts/push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/scripts/push.sh -------------------------------------------------------------------------------- /src/storefront/src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/favicon.ico -------------------------------------------------------------------------------- /src/storefront/src/images/catalog/cat-feeders.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/catalog/cat-feeders.svg -------------------------------------------------------------------------------- /src/storefront/src/images/catalog/cat-food.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/catalog/cat-food.svg -------------------------------------------------------------------------------- /src/storefront/src/images/catalog/cat-grooming.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/catalog/cat-grooming.svg -------------------------------------------------------------------------------- /src/storefront/src/images/catalog/cat-litter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/catalog/cat-litter.svg -------------------------------------------------------------------------------- /src/storefront/src/images/hero/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/hero/01.jpg -------------------------------------------------------------------------------- /src/storefront/src/images/hero/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/hero/02.jpg -------------------------------------------------------------------------------- /src/storefront/src/images/hero/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/hero/03.jpg -------------------------------------------------------------------------------- /src/storefront/src/images/logo-inverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/logo-inverse.png -------------------------------------------------------------------------------- /src/storefront/src/images/logo-inverse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/logo-inverse.svg -------------------------------------------------------------------------------- /src/storefront/src/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/logo.png -------------------------------------------------------------------------------- /src/storefront/src/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/logo.svg -------------------------------------------------------------------------------- /src/storefront/src/images/tech/apigw.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/apigw.svg -------------------------------------------------------------------------------- /src/storefront/src/images/tech/atp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/atp.png -------------------------------------------------------------------------------- /src/storefront/src/images/tech/atp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/atp.svg -------------------------------------------------------------------------------- /src/storefront/src/images/tech/aws.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/aws.png -------------------------------------------------------------------------------- /src/storefront/src/images/tech/awslambda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/awslambda.png -------------------------------------------------------------------------------- /src/storefront/src/images/tech/awslb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/awslb.png -------------------------------------------------------------------------------- /src/storefront/src/images/tech/basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/basic.png -------------------------------------------------------------------------------- /src/storefront/src/images/tech/bucket.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/bucket.svg -------------------------------------------------------------------------------- /src/storefront/src/images/tech/cdn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/cdn.svg -------------------------------------------------------------------------------- /src/storefront/src/images/tech/compute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/compute.svg -------------------------------------------------------------------------------- /src/storefront/src/images/tech/dns.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/dns.svg -------------------------------------------------------------------------------- /src/storefront/src/images/tech/docdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/docdb.png -------------------------------------------------------------------------------- /src/storefront/src/images/tech/docker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/docker.svg -------------------------------------------------------------------------------- /src/storefront/src/images/tech/email.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/email.svg -------------------------------------------------------------------------------- /src/storefront/src/images/tech/fn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/fn.png -------------------------------------------------------------------------------- /src/storefront/src/images/tech/go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/go.png -------------------------------------------------------------------------------- /src/storefront/src/images/tech/go.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/go.svg -------------------------------------------------------------------------------- /src/storefront/src/images/tech/grafana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/grafana.png -------------------------------------------------------------------------------- /src/storefront/src/images/tech/helidon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/helidon.svg -------------------------------------------------------------------------------- /src/storefront/src/images/tech/helm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/helm.svg -------------------------------------------------------------------------------- /src/storefront/src/images/tech/html5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/html5.png -------------------------------------------------------------------------------- /src/storefront/src/images/tech/java.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/java.png -------------------------------------------------------------------------------- /src/storefront/src/images/tech/k8s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/k8s.png -------------------------------------------------------------------------------- /src/storefront/src/images/tech/lb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/lb.svg -------------------------------------------------------------------------------- /src/storefront/src/images/tech/micronaut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/micronaut.png -------------------------------------------------------------------------------- /src/storefront/src/images/tech/mongo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/mongo.png -------------------------------------------------------------------------------- /src/storefront/src/images/tech/msk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/msk.png -------------------------------------------------------------------------------- /src/storefront/src/images/tech/nats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/nats.png -------------------------------------------------------------------------------- /src/storefront/src/images/tech/nginx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/nginx.png -------------------------------------------------------------------------------- /src/storefront/src/images/tech/nodejs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/nodejs.png -------------------------------------------------------------------------------- /src/storefront/src/images/tech/nodejs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/nodejs.svg -------------------------------------------------------------------------------- /src/storefront/src/images/tech/oci.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/oci.png -------------------------------------------------------------------------------- /src/storefront/src/images/tech/osbroker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/osbroker.png -------------------------------------------------------------------------------- /src/storefront/src/images/tech/prometheus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/prometheus.png -------------------------------------------------------------------------------- /src/storefront/src/images/tech/python.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/python.svg -------------------------------------------------------------------------------- /src/storefront/src/images/tech/rds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/rds.png -------------------------------------------------------------------------------- /src/storefront/src/images/tech/redis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/redis.png -------------------------------------------------------------------------------- /src/storefront/src/images/tech/streaming.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/streaming.svg -------------------------------------------------------------------------------- /src/storefront/src/images/tech/traefik.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/traefik.svg -------------------------------------------------------------------------------- /src/storefront/src/images/tech/ts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/ts.svg -------------------------------------------------------------------------------- /src/storefront/src/images/tech/vcn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/vcn.svg -------------------------------------------------------------------------------- /src/storefront/src/images/tech/waf.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/images/tech/waf.svg -------------------------------------------------------------------------------- /src/storefront/src/scripts/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/scripts/app.js -------------------------------------------------------------------------------- /src/storefront/src/scripts/charts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/scripts/charts.js -------------------------------------------------------------------------------- /src/storefront/src/scripts/mu/bindings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/scripts/mu/bindings/index.js -------------------------------------------------------------------------------- /src/storefront/src/scripts/mu/handlers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/scripts/mu/handlers/index.js -------------------------------------------------------------------------------- /src/storefront/src/scripts/mu/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/scripts/mu/index.js -------------------------------------------------------------------------------- /src/storefront/src/scripts/mu/logical/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/scripts/mu/logical/index.js -------------------------------------------------------------------------------- /src/storefront/src/scripts/mu/mu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/scripts/mu/mu.js -------------------------------------------------------------------------------- /src/storefront/src/scripts/mu/util/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/scripts/mu/util/index.js -------------------------------------------------------------------------------- /src/storefront/src/scripts/shop/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/scripts/shop/about.js -------------------------------------------------------------------------------- /src/storefront/src/scripts/shop/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/scripts/shop/api.js -------------------------------------------------------------------------------- /src/storefront/src/scripts/shop/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/scripts/shop/cart.js -------------------------------------------------------------------------------- /src/storefront/src/scripts/shop/catalog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/scripts/shop/catalog.js -------------------------------------------------------------------------------- /src/storefront/src/scripts/shop/components/badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/scripts/shop/components/badge.js -------------------------------------------------------------------------------- /src/storefront/src/scripts/shop/components/beta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/scripts/shop/components/beta.js -------------------------------------------------------------------------------- /src/storefront/src/scripts/shop/components/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/scripts/shop/components/chart.js -------------------------------------------------------------------------------- /src/storefront/src/scripts/shop/components/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/scripts/shop/components/debug.js -------------------------------------------------------------------------------- /src/storefront/src/scripts/shop/components/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/scripts/shop/components/form.js -------------------------------------------------------------------------------- /src/storefront/src/scripts/shop/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/scripts/shop/config.js -------------------------------------------------------------------------------- /src/storefront/src/scripts/shop/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/scripts/shop/constants.js -------------------------------------------------------------------------------- /src/storefront/src/scripts/shop/helper/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/scripts/shop/helper/info.js -------------------------------------------------------------------------------- /src/storefront/src/scripts/shop/helper/mixins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/scripts/shop/helper/mixins.js -------------------------------------------------------------------------------- /src/storefront/src/scripts/shop/helper/subscriber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/scripts/shop/helper/subscriber.js -------------------------------------------------------------------------------- /src/storefront/src/scripts/shop/helper/viewmx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/scripts/shop/helper/viewmx.js -------------------------------------------------------------------------------- /src/storefront/src/scripts/shop/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/scripts/shop/index.js -------------------------------------------------------------------------------- /src/storefront/src/scripts/shop/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/scripts/shop/order.js -------------------------------------------------------------------------------- /src/storefront/src/scripts/shop/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/scripts/shop/page.js -------------------------------------------------------------------------------- /src/storefront/src/scripts/shop/router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/scripts/shop/router.js -------------------------------------------------------------------------------- /src/storefront/src/scripts/shop/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/scripts/shop/ui.js -------------------------------------------------------------------------------- /src/storefront/src/scripts/shop/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/scripts/shop/user.js -------------------------------------------------------------------------------- /src/storefront/src/scripts/uikit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/scripts/uikit.js -------------------------------------------------------------------------------- /src/storefront/src/scripts/util/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/scripts/util/constants.js -------------------------------------------------------------------------------- /src/storefront/src/scripts/util/wait.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/scripts/util/wait.js -------------------------------------------------------------------------------- /src/storefront/src/scripts/util/window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/scripts/util/window.js -------------------------------------------------------------------------------- /src/storefront/src/styles/_settings.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/styles/_settings.less -------------------------------------------------------------------------------- /src/storefront/src/styles/_uikit.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/styles/_uikit.less -------------------------------------------------------------------------------- /src/storefront/src/styles/_uikit.theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/styles/_uikit.theme.less -------------------------------------------------------------------------------- /src/storefront/src/styles/components/mixin.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/styles/components/mixin.less -------------------------------------------------------------------------------- /src/storefront/src/styles/shop.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/styles/shop.less -------------------------------------------------------------------------------- /src/storefront/src/styles/uikit.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/styles/uikit.less -------------------------------------------------------------------------------- /src/storefront/src/templates/components/_navbar.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/components/_navbar.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/components/_toolbar.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/components/_toolbar.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/data/_data.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/data/_data.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/layouts/_account.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/layouts/_account.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/layouts/_article.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/layouts/_article.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/layouts/_checkout.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/layouts/_checkout.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/layouts/_default.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/layouts/_default.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/layouts/_embed.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/layouts/_embed.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/layouts/_index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/layouts/_index.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/layouts/_informational.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/layouts/_informational.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/layouts/_pages.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/layouts/_pages.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/mixins/_article.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/mixins/_article.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/mixins/_filterbox.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/mixins/_filterbox.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/mixins/_icon.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/mixins/_icon.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/mixins/_import.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/mixins/_import.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/mixins/_link-to-all.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/mixins/_link-to-all.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/mixins/_price.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/mixins/_price.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/mixins/_product-small.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/mixins/_product-small.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/mixins/_product.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/mixins/_product.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/mixins/_quantity.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/mixins/_quantity.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/pages/404.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/pages/404.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/pages/50x.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/pages/50x.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/pages/about.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/pages/about.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/pages/article.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/pages/article.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/pages/auth.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/pages/auth.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/pages/blog.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/pages/blog.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/pages/brands.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/pages/brands.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/pages/cart.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/pages/cart.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/pages/catalog.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/pages/catalog.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/pages/category.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/pages/category.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/pages/checkout.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/pages/checkout.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/pages/compare.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/pages/compare.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/pages/contacts.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/pages/contacts.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/pages/customer.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/pages/customer.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/pages/delivery.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/pages/delivery.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/pages/error.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/pages/error.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/pages/faq.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/pages/faq.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/pages/favorites.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/pages/favorites.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/pages/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/pages/index.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/pages/orders.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/pages/orders.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/pages/personal.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/pages/personal.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/pages/product.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/pages/product.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/pages/reviews.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/pages/reviews.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/pages/services.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/pages/services.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/pages/settings.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/pages/settings.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/pages/subcategory.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/pages/subcategory.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/partials/_article.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/partials/_article.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/partials/_consent.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/partials/_consent.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/partials/_copyright.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/partials/_copyright.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/partials/_footer.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/partials/_footer.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/partials/_head.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/partials/_head.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/partials/_header.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/partials/_header.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/partials/_logo-inverse.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/partials/_logo-inverse.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/partials/_logo.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/partials/_logo.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/partials/_products.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/partials/_products.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/views/miniCart.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/views/miniCart.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/views/orderCheckout.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/views/orderCheckout.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/views/productCard.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/views/productCard.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/views/productGrid.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/views/productGrid.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/views/productSlider.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/views/productSlider.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/views/userAddress.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/views/userAddress.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/views/userPayment.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/views/userPayment.pug -------------------------------------------------------------------------------- /src/storefront/src/templates/views/userToolbar.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/src/templates/views/userToolbar.pug -------------------------------------------------------------------------------- /src/storefront/test/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/test/Dockerfile -------------------------------------------------------------------------------- /src/storefront/test/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/test/docker-compose.yml -------------------------------------------------------------------------------- /src/storefront/test/helper/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/test/helper/data.js -------------------------------------------------------------------------------- /src/storefront/test/helper/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/test/helper/main.js -------------------------------------------------------------------------------- /src/storefront/test/helper/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/test/helper/mock.js -------------------------------------------------------------------------------- /src/storefront/test/user/user.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/test/user/user.spec.js -------------------------------------------------------------------------------- /src/storefront/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/storefront/webpack.config.js -------------------------------------------------------------------------------- /src/user/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/user/README.md -------------------------------------------------------------------------------- /src/user/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/user/app/build.gradle -------------------------------------------------------------------------------- /src/user/app/openapi.properties: -------------------------------------------------------------------------------- 1 | swagger-ui.enabled=true -------------------------------------------------------------------------------- /src/user/app/src/main/java/user/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/user/app/src/main/java/user/Application.java -------------------------------------------------------------------------------- /src/user/app/src/main/java/user/PasswordUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/user/app/src/main/java/user/PasswordUtils.java -------------------------------------------------------------------------------- /src/user/app/src/main/java/user/model/Default.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/user/app/src/main/java/user/model/Default.java -------------------------------------------------------------------------------- /src/user/app/src/main/java/user/model/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/user/app/src/main/java/user/model/User.java -------------------------------------------------------------------------------- /src/user/app/src/main/java/user/model/UserAddress.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/user/app/src/main/java/user/model/UserAddress.java -------------------------------------------------------------------------------- /src/user/app/src/main/java/user/model/UserCard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/user/app/src/main/java/user/model/UserCard.java -------------------------------------------------------------------------------- /src/user/app/src/main/resources/application-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/user/app/src/main/resources/application-app.yml -------------------------------------------------------------------------------- /src/user/app/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/user/app/src/main/resources/application.yml -------------------------------------------------------------------------------- /src/user/app/src/main/resources/bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/user/app/src/main/resources/bootstrap.yml -------------------------------------------------------------------------------- /src/user/app/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/user/app/src/main/resources/logback.xml -------------------------------------------------------------------------------- /src/user/app/src/test/java/user/H2UserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/user/app/src/test/java/user/H2UserTest.java -------------------------------------------------------------------------------- /src/user/app/src/test/resources/application-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/user/app/src/test/resources/application-test.yml -------------------------------------------------------------------------------- /src/user/app/src/test/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/user/app/src/test/resources/logback-test.xml -------------------------------------------------------------------------------- /src/user/aws/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/user/aws/build.gradle -------------------------------------------------------------------------------- /src/user/aws/src/main/java/user/AwsApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/user/aws/src/main/java/user/AwsApplication.java -------------------------------------------------------------------------------- /src/user/aws/src/main/resources/application-ec2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/user/aws/src/main/resources/application-ec2.yml -------------------------------------------------------------------------------- /src/user/aws/src/main/resources/bootstrap-ec2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/user/aws/src/main/resources/bootstrap-ec2.yml -------------------------------------------------------------------------------- /src/user/aws/src/test/java/user/AwsUserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/user/aws/src/test/java/user/AwsUserTest.java -------------------------------------------------------------------------------- /src/user/aws/src/test/resources/application-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/user/aws/src/test/resources/application-test.yml -------------------------------------------------------------------------------- /src/user/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/user/gradle.properties -------------------------------------------------------------------------------- /src/user/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/user/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/user/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/user/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /src/user/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/user/gradlew -------------------------------------------------------------------------------- /src/user/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/user/gradlew.bat -------------------------------------------------------------------------------- /src/user/oci/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/user/oci/build.gradle -------------------------------------------------------------------------------- /src/user/oci/src/main/java/user/OciApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/user/oci/src/main/java/user/OciApplication.java -------------------------------------------------------------------------------- /src/user/oci/src/test/java/user/OciUserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/user/oci/src/test/java/user/OciUserTest.java -------------------------------------------------------------------------------- /src/user/oci/src/test/resources/application-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/user/oci/src/test/resources/application-test.yml -------------------------------------------------------------------------------- /src/user/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/user/settings.gradle -------------------------------------------------------------------------------- /src/user/tck/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/user/tck/build.gradle -------------------------------------------------------------------------------- /src/user/tck/src/main/java/user/AbstractUserTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oracle-quickstart/oci-micronaut/HEAD/src/user/tck/src/main/java/user/AbstractUserTest.java --------------------------------------------------------------------------------