├── .github └── workflows │ └── review.yml ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── RELEASE-NOTES.md ├── cleanup-service ├── Dockerfile ├── README.md ├── script.sh └── setup.sh ├── cloud-functions ├── cloudbuild.yaml ├── setup.sh └── thumbnail │ ├── index.js │ └── package.json ├── config-env.sh ├── customer-service ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ └── maven-wrapper.properties ├── .vscode │ └── settings.json ├── Dockerfile ├── README.md ├── db │ ├── Dockerfile │ └── script.sh ├── deployment.yaml.tmpl ├── gke-lab-setup.sh ├── gkeRewardsWorkflow.yaml.tmpl ├── lab-setup.sh ├── mvnw ├── mvnw.cmd ├── package-lock.json ├── pom.xml ├── rewardsWorkflow.yaml.tmpl ├── setup-gke.sh ├── setup.sh └── src │ └── main │ ├── docker │ ├── Dockerfile.jvm │ ├── Dockerfile.legacy-jar │ ├── Dockerfile.native │ └── Dockerfile.native-micro │ ├── java │ └── org │ │ └── google │ │ └── demo │ │ ├── Customer.java │ │ └── CustomerResource.java │ └── resources │ ├── META-INF │ └── resources │ │ └── index.html │ ├── application.properties │ └── import.sql ├── customer-ui ├── .editorconfig ├── .env ├── .env.tmpl ├── .gitignore ├── .postcssrc.js ├── .vscode │ ├── extensions.json │ └── settings.json ├── Dockerfile ├── README.md ├── babel.config.js ├── cloud-run │ ├── .gcloudignore │ ├── .gitignore │ ├── index.js │ ├── package-lock.json │ └── package.json ├── images │ ├── 1.png │ ├── 2.png │ └── 3.png ├── jsconfig.json ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── icons │ │ ├── favicon-128x128.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ └── favicon-96x96.png │ └── images │ │ ├── Cymbal_Apps_Horizontal.png │ │ ├── Cymbal_Apps_Mark_Color.png │ │ ├── cottage-cheese-with-peas.jpg │ │ ├── curry-lunch-plate.jpg │ │ └── order-with-g-pay.png ├── quasar.conf.js ├── quasar.extensions.json ├── setup.sh └── src │ ├── App.vue │ ├── assets │ └── us-states.json │ ├── boot │ └── .gitkeep │ ├── components │ ├── OrderView.vue │ └── Toolbar.vue │ ├── css │ └── app.css │ ├── index.template.html │ ├── pages │ ├── CarouselPage.vue │ ├── EditOrderPage.vue │ ├── Error404.vue │ ├── OrderStatusPage.vue │ ├── RewardsPage.vue │ └── StartPage.vue │ ├── quasar.d.ts │ ├── router │ ├── index.js │ └── routes.js │ ├── store │ ├── index.js │ └── store-flag.d.ts │ └── utils │ ├── Firebase.js │ └── Server.js ├── employee-ui ├── .editorconfig ├── .env ├── .env.tmpl ├── .gitignore ├── .postcssrc.js ├── .vscode │ ├── extensions.json │ └── settings.json ├── README.md ├── add-iap-user.sh ├── babel.config.js ├── cloud-run │ ├── .gcloudignore │ ├── .gitignore │ ├── deploy.sh │ ├── index.js │ ├── package-lock.json │ └── package.json ├── iap-setup.sh ├── jsconfig.json ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── icons │ │ ├── favicon-128x128.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ └── favicon-96x96.png │ └── images │ │ ├── Cymbal_Apps_Horizontal.png │ │ ├── Cymbal_Apps_Mark_Color.png │ │ └── order-with-g-pay.png ├── quasar.conf.js ├── quasar.extensions.json ├── setup.sh └── src │ ├── App.vue │ ├── assets │ ├── dishes.json │ └── us-states.json │ ├── boot │ └── .gitkeep │ ├── components │ ├── OrderView.vue │ └── Toolbar.vue │ ├── css │ └── app.css │ ├── index.template.html │ ├── pages │ ├── AddMenuItemPage1.vue │ ├── AddMenuItemPage2.vue │ ├── Error404.vue │ ├── KitchenPage.vue │ ├── MenuPage.vue │ ├── ViewMenuPage.vue │ └── WelcomePage.vue │ ├── quasar.d.ts │ ├── router │ ├── index.js │ └── routes.js │ ├── store │ ├── index.js │ └── store-flag.d.ts │ └── utils │ ├── Firestore.js │ └── Server.js ├── get-site-urls.sh ├── gke-cloudrun-dbs-lab-setup.sh ├── images └── cymbal-eats.png ├── inventory-service ├── postgress │ ├── README.md │ ├── go.mod │ └── main.go └── spanner │ ├── README.md │ ├── cloudbuild.yaml │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── setup.sh ├── menu-service ├── .dockerignore ├── .gitignore ├── .mvn │ └── wrapper │ │ ├── MavenWrapperDownloader.java │ │ └── maven-wrapper.properties ├── Dockerfile ├── README.md ├── mvnw ├── mvnw.cmd ├── package-lock.json ├── pom.xml ├── setup.sh └── src │ └── main │ ├── docker │ ├── Dockerfile.jvm │ ├── Dockerfile.legacy-jar │ ├── Dockerfile.native │ └── Dockerfile.native-micro │ ├── java │ └── org │ │ └── google │ │ └── demo │ │ ├── Menu.java │ │ ├── MenuResource.java │ │ └── Status.java │ └── resources │ ├── META-INF │ └── resources │ │ └── index.html │ ├── application.properties │ └── import.sql ├── order-service ├── .gitignore ├── deploy.sh ├── firebase.json ├── firebaserc.tmpl ├── firestore.indexes.json ├── firestore.rules ├── index.js ├── package-lock.json ├── package.json └── setup.sh ├── org-admin-setup.sh ├── partner-registration-service ├── .gitignore ├── README.md ├── create-partner.sh ├── deploy.sh ├── example-partner.json ├── example-partner2.json ├── get-partners.sh ├── index.js ├── package-lock.json └── package.json └── setup.sh /.github/workflows/review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/.github/workflows/review.yml -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE-NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/RELEASE-NOTES.md -------------------------------------------------------------------------------- /cleanup-service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/cleanup-service/Dockerfile -------------------------------------------------------------------------------- /cleanup-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/cleanup-service/README.md -------------------------------------------------------------------------------- /cleanup-service/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/cleanup-service/script.sh -------------------------------------------------------------------------------- /cleanup-service/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/cleanup-service/setup.sh -------------------------------------------------------------------------------- /cloud-functions/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/cloud-functions/cloudbuild.yaml -------------------------------------------------------------------------------- /cloud-functions/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/cloud-functions/setup.sh -------------------------------------------------------------------------------- /cloud-functions/thumbnail/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/cloud-functions/thumbnail/index.js -------------------------------------------------------------------------------- /cloud-functions/thumbnail/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/cloud-functions/thumbnail/package.json -------------------------------------------------------------------------------- /config-env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/config-env.sh -------------------------------------------------------------------------------- /customer-service/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-service/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /customer-service/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-service/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /customer-service/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-service/.vscode/settings.json -------------------------------------------------------------------------------- /customer-service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-service/Dockerfile -------------------------------------------------------------------------------- /customer-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-service/README.md -------------------------------------------------------------------------------- /customer-service/db/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-service/db/Dockerfile -------------------------------------------------------------------------------- /customer-service/db/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-service/db/script.sh -------------------------------------------------------------------------------- /customer-service/deployment.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-service/deployment.yaml.tmpl -------------------------------------------------------------------------------- /customer-service/gke-lab-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-service/gke-lab-setup.sh -------------------------------------------------------------------------------- /customer-service/gkeRewardsWorkflow.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-service/gkeRewardsWorkflow.yaml.tmpl -------------------------------------------------------------------------------- /customer-service/lab-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-service/lab-setup.sh -------------------------------------------------------------------------------- /customer-service/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-service/mvnw -------------------------------------------------------------------------------- /customer-service/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-service/mvnw.cmd -------------------------------------------------------------------------------- /customer-service/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "lockfileVersion": 1 3 | } 4 | -------------------------------------------------------------------------------- /customer-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-service/pom.xml -------------------------------------------------------------------------------- /customer-service/rewardsWorkflow.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-service/rewardsWorkflow.yaml.tmpl -------------------------------------------------------------------------------- /customer-service/setup-gke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-service/setup-gke.sh -------------------------------------------------------------------------------- /customer-service/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-service/setup.sh -------------------------------------------------------------------------------- /customer-service/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-service/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /customer-service/src/main/docker/Dockerfile.legacy-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-service/src/main/docker/Dockerfile.legacy-jar -------------------------------------------------------------------------------- /customer-service/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-service/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /customer-service/src/main/docker/Dockerfile.native-micro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-service/src/main/docker/Dockerfile.native-micro -------------------------------------------------------------------------------- /customer-service/src/main/java/org/google/demo/Customer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-service/src/main/java/org/google/demo/Customer.java -------------------------------------------------------------------------------- /customer-service/src/main/java/org/google/demo/CustomerResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-service/src/main/java/org/google/demo/CustomerResource.java -------------------------------------------------------------------------------- /customer-service/src/main/resources/META-INF/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-service/src/main/resources/META-INF/resources/index.html -------------------------------------------------------------------------------- /customer-service/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-service/src/main/resources/application.properties -------------------------------------------------------------------------------- /customer-service/src/main/resources/import.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-service/src/main/resources/import.sql -------------------------------------------------------------------------------- /customer-ui/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/.editorconfig -------------------------------------------------------------------------------- /customer-ui/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/.env -------------------------------------------------------------------------------- /customer-ui/.env.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/.env.tmpl -------------------------------------------------------------------------------- /customer-ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/.gitignore -------------------------------------------------------------------------------- /customer-ui/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/.postcssrc.js -------------------------------------------------------------------------------- /customer-ui/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/.vscode/extensions.json -------------------------------------------------------------------------------- /customer-ui/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/.vscode/settings.json -------------------------------------------------------------------------------- /customer-ui/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/Dockerfile -------------------------------------------------------------------------------- /customer-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/README.md -------------------------------------------------------------------------------- /customer-ui/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/babel.config.js -------------------------------------------------------------------------------- /customer-ui/cloud-run/.gcloudignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /customer-ui/cloud-run/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | public -------------------------------------------------------------------------------- /customer-ui/cloud-run/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/cloud-run/index.js -------------------------------------------------------------------------------- /customer-ui/cloud-run/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/cloud-run/package-lock.json -------------------------------------------------------------------------------- /customer-ui/cloud-run/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/cloud-run/package.json -------------------------------------------------------------------------------- /customer-ui/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/images/1.png -------------------------------------------------------------------------------- /customer-ui/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/images/2.png -------------------------------------------------------------------------------- /customer-ui/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/images/3.png -------------------------------------------------------------------------------- /customer-ui/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/jsconfig.json -------------------------------------------------------------------------------- /customer-ui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/package-lock.json -------------------------------------------------------------------------------- /customer-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/package.json -------------------------------------------------------------------------------- /customer-ui/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/public/favicon.ico -------------------------------------------------------------------------------- /customer-ui/public/icons/favicon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/public/icons/favicon-128x128.png -------------------------------------------------------------------------------- /customer-ui/public/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/public/icons/favicon-16x16.png -------------------------------------------------------------------------------- /customer-ui/public/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/public/icons/favicon-32x32.png -------------------------------------------------------------------------------- /customer-ui/public/icons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/public/icons/favicon-96x96.png -------------------------------------------------------------------------------- /customer-ui/public/images/Cymbal_Apps_Horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/public/images/Cymbal_Apps_Horizontal.png -------------------------------------------------------------------------------- /customer-ui/public/images/Cymbal_Apps_Mark_Color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/public/images/Cymbal_Apps_Mark_Color.png -------------------------------------------------------------------------------- /customer-ui/public/images/cottage-cheese-with-peas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/public/images/cottage-cheese-with-peas.jpg -------------------------------------------------------------------------------- /customer-ui/public/images/curry-lunch-plate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/public/images/curry-lunch-plate.jpg -------------------------------------------------------------------------------- /customer-ui/public/images/order-with-g-pay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/public/images/order-with-g-pay.png -------------------------------------------------------------------------------- /customer-ui/quasar.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/quasar.conf.js -------------------------------------------------------------------------------- /customer-ui/quasar.extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/quasar.extensions.json -------------------------------------------------------------------------------- /customer-ui/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/setup.sh -------------------------------------------------------------------------------- /customer-ui/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/src/App.vue -------------------------------------------------------------------------------- /customer-ui/src/assets/us-states.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/src/assets/us-states.json -------------------------------------------------------------------------------- /customer-ui/src/boot/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /customer-ui/src/components/OrderView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/src/components/OrderView.vue -------------------------------------------------------------------------------- /customer-ui/src/components/Toolbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/src/components/Toolbar.vue -------------------------------------------------------------------------------- /customer-ui/src/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/src/css/app.css -------------------------------------------------------------------------------- /customer-ui/src/index.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/src/index.template.html -------------------------------------------------------------------------------- /customer-ui/src/pages/CarouselPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/src/pages/CarouselPage.vue -------------------------------------------------------------------------------- /customer-ui/src/pages/EditOrderPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/src/pages/EditOrderPage.vue -------------------------------------------------------------------------------- /customer-ui/src/pages/Error404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/src/pages/Error404.vue -------------------------------------------------------------------------------- /customer-ui/src/pages/OrderStatusPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/src/pages/OrderStatusPage.vue -------------------------------------------------------------------------------- /customer-ui/src/pages/RewardsPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/src/pages/RewardsPage.vue -------------------------------------------------------------------------------- /customer-ui/src/pages/StartPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/src/pages/StartPage.vue -------------------------------------------------------------------------------- /customer-ui/src/quasar.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/src/quasar.d.ts -------------------------------------------------------------------------------- /customer-ui/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/src/router/index.js -------------------------------------------------------------------------------- /customer-ui/src/router/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/src/router/routes.js -------------------------------------------------------------------------------- /customer-ui/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/src/store/index.js -------------------------------------------------------------------------------- /customer-ui/src/store/store-flag.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/src/store/store-flag.d.ts -------------------------------------------------------------------------------- /customer-ui/src/utils/Firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/src/utils/Firebase.js -------------------------------------------------------------------------------- /customer-ui/src/utils/Server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/customer-ui/src/utils/Server.js -------------------------------------------------------------------------------- /employee-ui/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/.editorconfig -------------------------------------------------------------------------------- /employee-ui/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/.env -------------------------------------------------------------------------------- /employee-ui/.env.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/.env.tmpl -------------------------------------------------------------------------------- /employee-ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/.gitignore -------------------------------------------------------------------------------- /employee-ui/.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/.postcssrc.js -------------------------------------------------------------------------------- /employee-ui/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/.vscode/extensions.json -------------------------------------------------------------------------------- /employee-ui/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/.vscode/settings.json -------------------------------------------------------------------------------- /employee-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/README.md -------------------------------------------------------------------------------- /employee-ui/add-iap-user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/add-iap-user.sh -------------------------------------------------------------------------------- /employee-ui/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/babel.config.js -------------------------------------------------------------------------------- /employee-ui/cloud-run/.gcloudignore: -------------------------------------------------------------------------------- 1 | .git 2 | -------------------------------------------------------------------------------- /employee-ui/cloud-run/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | public -------------------------------------------------------------------------------- /employee-ui/cloud-run/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/cloud-run/deploy.sh -------------------------------------------------------------------------------- /employee-ui/cloud-run/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/cloud-run/index.js -------------------------------------------------------------------------------- /employee-ui/cloud-run/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/cloud-run/package-lock.json -------------------------------------------------------------------------------- /employee-ui/cloud-run/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/cloud-run/package.json -------------------------------------------------------------------------------- /employee-ui/iap-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/iap-setup.sh -------------------------------------------------------------------------------- /employee-ui/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/jsconfig.json -------------------------------------------------------------------------------- /employee-ui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/package-lock.json -------------------------------------------------------------------------------- /employee-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/package.json -------------------------------------------------------------------------------- /employee-ui/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/public/favicon.ico -------------------------------------------------------------------------------- /employee-ui/public/icons/favicon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/public/icons/favicon-128x128.png -------------------------------------------------------------------------------- /employee-ui/public/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/public/icons/favicon-16x16.png -------------------------------------------------------------------------------- /employee-ui/public/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/public/icons/favicon-32x32.png -------------------------------------------------------------------------------- /employee-ui/public/icons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/public/icons/favicon-96x96.png -------------------------------------------------------------------------------- /employee-ui/public/images/Cymbal_Apps_Horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/public/images/Cymbal_Apps_Horizontal.png -------------------------------------------------------------------------------- /employee-ui/public/images/Cymbal_Apps_Mark_Color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/public/images/Cymbal_Apps_Mark_Color.png -------------------------------------------------------------------------------- /employee-ui/public/images/order-with-g-pay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/public/images/order-with-g-pay.png -------------------------------------------------------------------------------- /employee-ui/quasar.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/quasar.conf.js -------------------------------------------------------------------------------- /employee-ui/quasar.extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/quasar.extensions.json -------------------------------------------------------------------------------- /employee-ui/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/setup.sh -------------------------------------------------------------------------------- /employee-ui/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/src/App.vue -------------------------------------------------------------------------------- /employee-ui/src/assets/dishes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/src/assets/dishes.json -------------------------------------------------------------------------------- /employee-ui/src/assets/us-states.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/src/assets/us-states.json -------------------------------------------------------------------------------- /employee-ui/src/boot/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /employee-ui/src/components/OrderView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/src/components/OrderView.vue -------------------------------------------------------------------------------- /employee-ui/src/components/Toolbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/src/components/Toolbar.vue -------------------------------------------------------------------------------- /employee-ui/src/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/src/css/app.css -------------------------------------------------------------------------------- /employee-ui/src/index.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/src/index.template.html -------------------------------------------------------------------------------- /employee-ui/src/pages/AddMenuItemPage1.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/src/pages/AddMenuItemPage1.vue -------------------------------------------------------------------------------- /employee-ui/src/pages/AddMenuItemPage2.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/src/pages/AddMenuItemPage2.vue -------------------------------------------------------------------------------- /employee-ui/src/pages/Error404.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/src/pages/Error404.vue -------------------------------------------------------------------------------- /employee-ui/src/pages/KitchenPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/src/pages/KitchenPage.vue -------------------------------------------------------------------------------- /employee-ui/src/pages/MenuPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/src/pages/MenuPage.vue -------------------------------------------------------------------------------- /employee-ui/src/pages/ViewMenuPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/src/pages/ViewMenuPage.vue -------------------------------------------------------------------------------- /employee-ui/src/pages/WelcomePage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/src/pages/WelcomePage.vue -------------------------------------------------------------------------------- /employee-ui/src/quasar.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/src/quasar.d.ts -------------------------------------------------------------------------------- /employee-ui/src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/src/router/index.js -------------------------------------------------------------------------------- /employee-ui/src/router/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/src/router/routes.js -------------------------------------------------------------------------------- /employee-ui/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/src/store/index.js -------------------------------------------------------------------------------- /employee-ui/src/store/store-flag.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/src/store/store-flag.d.ts -------------------------------------------------------------------------------- /employee-ui/src/utils/Firestore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/src/utils/Firestore.js -------------------------------------------------------------------------------- /employee-ui/src/utils/Server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/employee-ui/src/utils/Server.js -------------------------------------------------------------------------------- /get-site-urls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/get-site-urls.sh -------------------------------------------------------------------------------- /gke-cloudrun-dbs-lab-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/gke-cloudrun-dbs-lab-setup.sh -------------------------------------------------------------------------------- /images/cymbal-eats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/images/cymbal-eats.png -------------------------------------------------------------------------------- /inventory-service/postgress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/inventory-service/postgress/README.md -------------------------------------------------------------------------------- /inventory-service/postgress/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/inventory-service/postgress/go.mod -------------------------------------------------------------------------------- /inventory-service/postgress/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/inventory-service/postgress/main.go -------------------------------------------------------------------------------- /inventory-service/spanner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/inventory-service/spanner/README.md -------------------------------------------------------------------------------- /inventory-service/spanner/cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/inventory-service/spanner/cloudbuild.yaml -------------------------------------------------------------------------------- /inventory-service/spanner/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/inventory-service/spanner/go.mod -------------------------------------------------------------------------------- /inventory-service/spanner/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/inventory-service/spanner/go.sum -------------------------------------------------------------------------------- /inventory-service/spanner/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/inventory-service/spanner/main.go -------------------------------------------------------------------------------- /inventory-service/spanner/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/inventory-service/spanner/setup.sh -------------------------------------------------------------------------------- /menu-service/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/menu-service/.dockerignore -------------------------------------------------------------------------------- /menu-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/menu-service/.gitignore -------------------------------------------------------------------------------- /menu-service/.mvn/wrapper/MavenWrapperDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/menu-service/.mvn/wrapper/MavenWrapperDownloader.java -------------------------------------------------------------------------------- /menu-service/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/menu-service/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /menu-service/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/menu-service/Dockerfile -------------------------------------------------------------------------------- /menu-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/menu-service/README.md -------------------------------------------------------------------------------- /menu-service/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/menu-service/mvnw -------------------------------------------------------------------------------- /menu-service/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/menu-service/mvnw.cmd -------------------------------------------------------------------------------- /menu-service/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "lockfileVersion": 1 3 | } 4 | -------------------------------------------------------------------------------- /menu-service/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/menu-service/pom.xml -------------------------------------------------------------------------------- /menu-service/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/menu-service/setup.sh -------------------------------------------------------------------------------- /menu-service/src/main/docker/Dockerfile.jvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/menu-service/src/main/docker/Dockerfile.jvm -------------------------------------------------------------------------------- /menu-service/src/main/docker/Dockerfile.legacy-jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/menu-service/src/main/docker/Dockerfile.legacy-jar -------------------------------------------------------------------------------- /menu-service/src/main/docker/Dockerfile.native: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/menu-service/src/main/docker/Dockerfile.native -------------------------------------------------------------------------------- /menu-service/src/main/docker/Dockerfile.native-micro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/menu-service/src/main/docker/Dockerfile.native-micro -------------------------------------------------------------------------------- /menu-service/src/main/java/org/google/demo/Menu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/menu-service/src/main/java/org/google/demo/Menu.java -------------------------------------------------------------------------------- /menu-service/src/main/java/org/google/demo/MenuResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/menu-service/src/main/java/org/google/demo/MenuResource.java -------------------------------------------------------------------------------- /menu-service/src/main/java/org/google/demo/Status.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/menu-service/src/main/java/org/google/demo/Status.java -------------------------------------------------------------------------------- /menu-service/src/main/resources/META-INF/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/menu-service/src/main/resources/META-INF/resources/index.html -------------------------------------------------------------------------------- /menu-service/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/menu-service/src/main/resources/application.properties -------------------------------------------------------------------------------- /menu-service/src/main/resources/import.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/menu-service/src/main/resources/import.sql -------------------------------------------------------------------------------- /order-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/order-service/.gitignore -------------------------------------------------------------------------------- /order-service/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/order-service/deploy.sh -------------------------------------------------------------------------------- /order-service/firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/order-service/firebase.json -------------------------------------------------------------------------------- /order-service/firebaserc.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/order-service/firebaserc.tmpl -------------------------------------------------------------------------------- /order-service/firestore.indexes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/order-service/firestore.indexes.json -------------------------------------------------------------------------------- /order-service/firestore.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/order-service/firestore.rules -------------------------------------------------------------------------------- /order-service/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/order-service/index.js -------------------------------------------------------------------------------- /order-service/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/order-service/package-lock.json -------------------------------------------------------------------------------- /order-service/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/order-service/package.json -------------------------------------------------------------------------------- /order-service/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/order-service/setup.sh -------------------------------------------------------------------------------- /org-admin-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/org-admin-setup.sh -------------------------------------------------------------------------------- /partner-registration-service/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/partner-registration-service/.gitignore -------------------------------------------------------------------------------- /partner-registration-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/partner-registration-service/README.md -------------------------------------------------------------------------------- /partner-registration-service/create-partner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/partner-registration-service/create-partner.sh -------------------------------------------------------------------------------- /partner-registration-service/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/partner-registration-service/deploy.sh -------------------------------------------------------------------------------- /partner-registration-service/example-partner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/partner-registration-service/example-partner.json -------------------------------------------------------------------------------- /partner-registration-service/example-partner2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/partner-registration-service/example-partner2.json -------------------------------------------------------------------------------- /partner-registration-service/get-partners.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/partner-registration-service/get-partners.sh -------------------------------------------------------------------------------- /partner-registration-service/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/partner-registration-service/index.js -------------------------------------------------------------------------------- /partner-registration-service/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/partner-registration-service/package-lock.json -------------------------------------------------------------------------------- /partner-registration-service/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/partner-registration-service/package.json -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/cymbal-eats/HEAD/setup.sh --------------------------------------------------------------------------------