├── .dockerignore ├── .gitignore ├── ANALYTICS_SETUP.md ├── DEPLOYMENT.md ├── Dockerfile ├── Makefile ├── README.md ├── Trade off analysis: ├── YAML_SCHEMA.md ├── api ├── README.md ├── SPECIFICATION.md ├── gorph.proto └── v1 │ ├── gorph.pb.go │ └── gorph_grpc.pb.go ├── example_input ├── data-pipeline.yml ├── deploy.yml ├── infra.yml ├── microservices.yml ├── simple.yml └── webapp.yml ├── example_output ├── data-pipeline.dot ├── data-pipeline.png ├── deploy.dot ├── deploy.png ├── gorph-app.dot ├── gorph-app.png ├── infra.dot ├── infra.png ├── microservices.dot ├── microservices.png ├── simple.dot ├── simple.png ├── webapp.dot └── webapp.png ├── go.mod ├── go.sum ├── infrastructure.png ├── k8 ├── README.md ├── configmap.yaml ├── deployment.yaml ├── hpa.yaml ├── ingress.yaml ├── kustomization.yaml ├── namespace.yaml ├── service.yaml └── setup.sh ├── main.go ├── nginx.conf ├── output.dot ├── style.yml ├── templates ├── README.md ├── data-pipeline.yml ├── deploy.yml ├── gorph-app.yml ├── infra.yml ├── microservices.yml ├── simple.yml └── webapp.yml ├── verify-plausible.sh └── web ├── README.md ├── backend ├── build.sh ├── go.mod ├── go.sum ├── gorph.wasm ├── main.go └── templates │ ├── data-pipeline.yml │ ├── deploy.yml │ ├── gorph-app.yml │ ├── infra.yml │ ├── microservices.yml │ ├── simple.yml │ └── webapp.yml └── frontend ├── gorph-app ├── .gitignore ├── App.tsx ├── app.json ├── assets │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ └── splash-icon.png ├── index.ts ├── metro.config.js ├── package-lock.json ├── package.json ├── public │ ├── _headers │ ├── gorph.wasm │ ├── index.html │ └── wasm_exec.js ├── reset-onboarding-instructions.txt ├── src │ ├── components │ │ ├── APIKeyConfig.tsx │ │ ├── Builder.tsx │ │ ├── DiagramHeader.tsx │ │ ├── DiagramStateManager.tsx │ │ ├── DiagramViewer.tsx │ │ ├── DotOutput.tsx │ │ ├── Footer.tsx │ │ ├── Header.tsx │ │ ├── HistoryViewer.tsx │ │ ├── LLMGenerator.tsx │ │ ├── LoadingScreen.tsx │ │ ├── OnboardingModal.tsx │ │ ├── SuccessTooltip.tsx │ │ ├── TemplateModal.tsx │ │ ├── ValidationIcon.tsx │ │ ├── WasmBridge.tsx │ │ ├── WasmBridgeRuntime.tsx │ │ ├── WasmBridgeSimple.tsx │ │ └── YamlEditor.tsx │ ├── services │ │ ├── analytics.ts │ │ └── llmService.ts │ ├── theme │ │ └── ideTheme.ts │ └── utils │ │ └── environment.ts ├── tsconfig.json └── yarn.lock └── public ├── gorph.wasm └── wasm_exec.js /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/.gitignore -------------------------------------------------------------------------------- /ANALYTICS_SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/ANALYTICS_SETUP.md -------------------------------------------------------------------------------- /DEPLOYMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/DEPLOYMENT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/README.md -------------------------------------------------------------------------------- /Trade off analysis:: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/Trade off analysis: -------------------------------------------------------------------------------- /YAML_SCHEMA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/YAML_SCHEMA.md -------------------------------------------------------------------------------- /api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/api/README.md -------------------------------------------------------------------------------- /api/SPECIFICATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/api/SPECIFICATION.md -------------------------------------------------------------------------------- /api/gorph.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/api/gorph.proto -------------------------------------------------------------------------------- /api/v1/gorph.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/api/v1/gorph.pb.go -------------------------------------------------------------------------------- /api/v1/gorph_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/api/v1/gorph_grpc.pb.go -------------------------------------------------------------------------------- /example_input/data-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/example_input/data-pipeline.yml -------------------------------------------------------------------------------- /example_input/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/example_input/deploy.yml -------------------------------------------------------------------------------- /example_input/infra.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/example_input/infra.yml -------------------------------------------------------------------------------- /example_input/microservices.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/example_input/microservices.yml -------------------------------------------------------------------------------- /example_input/simple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/example_input/simple.yml -------------------------------------------------------------------------------- /example_input/webapp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/example_input/webapp.yml -------------------------------------------------------------------------------- /example_output/data-pipeline.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/example_output/data-pipeline.dot -------------------------------------------------------------------------------- /example_output/data-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/example_output/data-pipeline.png -------------------------------------------------------------------------------- /example_output/deploy.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/example_output/deploy.dot -------------------------------------------------------------------------------- /example_output/deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/example_output/deploy.png -------------------------------------------------------------------------------- /example_output/gorph-app.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/example_output/gorph-app.dot -------------------------------------------------------------------------------- /example_output/gorph-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/example_output/gorph-app.png -------------------------------------------------------------------------------- /example_output/infra.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/example_output/infra.dot -------------------------------------------------------------------------------- /example_output/infra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/example_output/infra.png -------------------------------------------------------------------------------- /example_output/microservices.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/example_output/microservices.dot -------------------------------------------------------------------------------- /example_output/microservices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/example_output/microservices.png -------------------------------------------------------------------------------- /example_output/simple.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/example_output/simple.dot -------------------------------------------------------------------------------- /example_output/simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/example_output/simple.png -------------------------------------------------------------------------------- /example_output/webapp.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/example_output/webapp.dot -------------------------------------------------------------------------------- /example_output/webapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/example_output/webapp.png -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/go.sum -------------------------------------------------------------------------------- /infrastructure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/infrastructure.png -------------------------------------------------------------------------------- /k8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/k8/README.md -------------------------------------------------------------------------------- /k8/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/k8/configmap.yaml -------------------------------------------------------------------------------- /k8/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/k8/deployment.yaml -------------------------------------------------------------------------------- /k8/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/k8/hpa.yaml -------------------------------------------------------------------------------- /k8/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/k8/ingress.yaml -------------------------------------------------------------------------------- /k8/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/k8/kustomization.yaml -------------------------------------------------------------------------------- /k8/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/k8/namespace.yaml -------------------------------------------------------------------------------- /k8/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/k8/service.yaml -------------------------------------------------------------------------------- /k8/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/k8/setup.sh -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/main.go -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/nginx.conf -------------------------------------------------------------------------------- /output.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/output.dot -------------------------------------------------------------------------------- /style.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/style.yml -------------------------------------------------------------------------------- /templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/templates/README.md -------------------------------------------------------------------------------- /templates/data-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/templates/data-pipeline.yml -------------------------------------------------------------------------------- /templates/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/templates/deploy.yml -------------------------------------------------------------------------------- /templates/gorph-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/templates/gorph-app.yml -------------------------------------------------------------------------------- /templates/infra.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/templates/infra.yml -------------------------------------------------------------------------------- /templates/microservices.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/templates/microservices.yml -------------------------------------------------------------------------------- /templates/simple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/templates/simple.yml -------------------------------------------------------------------------------- /templates/webapp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/templates/webapp.yml -------------------------------------------------------------------------------- /verify-plausible.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/verify-plausible.sh -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/README.md -------------------------------------------------------------------------------- /web/backend/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/backend/build.sh -------------------------------------------------------------------------------- /web/backend/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/backend/go.mod -------------------------------------------------------------------------------- /web/backend/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/backend/go.sum -------------------------------------------------------------------------------- /web/backend/gorph.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/backend/gorph.wasm -------------------------------------------------------------------------------- /web/backend/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/backend/main.go -------------------------------------------------------------------------------- /web/backend/templates/data-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/backend/templates/data-pipeline.yml -------------------------------------------------------------------------------- /web/backend/templates/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/backend/templates/deploy.yml -------------------------------------------------------------------------------- /web/backend/templates/gorph-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/backend/templates/gorph-app.yml -------------------------------------------------------------------------------- /web/backend/templates/infra.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/backend/templates/infra.yml -------------------------------------------------------------------------------- /web/backend/templates/microservices.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/backend/templates/microservices.yml -------------------------------------------------------------------------------- /web/backend/templates/simple.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/backend/templates/simple.yml -------------------------------------------------------------------------------- /web/backend/templates/webapp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/backend/templates/webapp.yml -------------------------------------------------------------------------------- /web/frontend/gorph-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/.gitignore -------------------------------------------------------------------------------- /web/frontend/gorph-app/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/App.tsx -------------------------------------------------------------------------------- /web/frontend/gorph-app/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/app.json -------------------------------------------------------------------------------- /web/frontend/gorph-app/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/assets/adaptive-icon.png -------------------------------------------------------------------------------- /web/frontend/gorph-app/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/assets/favicon.png -------------------------------------------------------------------------------- /web/frontend/gorph-app/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/assets/icon.png -------------------------------------------------------------------------------- /web/frontend/gorph-app/assets/splash-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/assets/splash-icon.png -------------------------------------------------------------------------------- /web/frontend/gorph-app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/index.ts -------------------------------------------------------------------------------- /web/frontend/gorph-app/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/metro.config.js -------------------------------------------------------------------------------- /web/frontend/gorph-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/package-lock.json -------------------------------------------------------------------------------- /web/frontend/gorph-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/package.json -------------------------------------------------------------------------------- /web/frontend/gorph-app/public/_headers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/public/_headers -------------------------------------------------------------------------------- /web/frontend/gorph-app/public/gorph.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/public/gorph.wasm -------------------------------------------------------------------------------- /web/frontend/gorph-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/public/index.html -------------------------------------------------------------------------------- /web/frontend/gorph-app/public/wasm_exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/public/wasm_exec.js -------------------------------------------------------------------------------- /web/frontend/gorph-app/reset-onboarding-instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/reset-onboarding-instructions.txt -------------------------------------------------------------------------------- /web/frontend/gorph-app/src/components/APIKeyConfig.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/src/components/APIKeyConfig.tsx -------------------------------------------------------------------------------- /web/frontend/gorph-app/src/components/Builder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/src/components/Builder.tsx -------------------------------------------------------------------------------- /web/frontend/gorph-app/src/components/DiagramHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/src/components/DiagramHeader.tsx -------------------------------------------------------------------------------- /web/frontend/gorph-app/src/components/DiagramStateManager.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/src/components/DiagramStateManager.tsx -------------------------------------------------------------------------------- /web/frontend/gorph-app/src/components/DiagramViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/src/components/DiagramViewer.tsx -------------------------------------------------------------------------------- /web/frontend/gorph-app/src/components/DotOutput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/src/components/DotOutput.tsx -------------------------------------------------------------------------------- /web/frontend/gorph-app/src/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/src/components/Footer.tsx -------------------------------------------------------------------------------- /web/frontend/gorph-app/src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/src/components/Header.tsx -------------------------------------------------------------------------------- /web/frontend/gorph-app/src/components/HistoryViewer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/src/components/HistoryViewer.tsx -------------------------------------------------------------------------------- /web/frontend/gorph-app/src/components/LLMGenerator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/src/components/LLMGenerator.tsx -------------------------------------------------------------------------------- /web/frontend/gorph-app/src/components/LoadingScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/src/components/LoadingScreen.tsx -------------------------------------------------------------------------------- /web/frontend/gorph-app/src/components/OnboardingModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/src/components/OnboardingModal.tsx -------------------------------------------------------------------------------- /web/frontend/gorph-app/src/components/SuccessTooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/src/components/SuccessTooltip.tsx -------------------------------------------------------------------------------- /web/frontend/gorph-app/src/components/TemplateModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/src/components/TemplateModal.tsx -------------------------------------------------------------------------------- /web/frontend/gorph-app/src/components/ValidationIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/src/components/ValidationIcon.tsx -------------------------------------------------------------------------------- /web/frontend/gorph-app/src/components/WasmBridge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/src/components/WasmBridge.tsx -------------------------------------------------------------------------------- /web/frontend/gorph-app/src/components/WasmBridgeRuntime.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/src/components/WasmBridgeRuntime.tsx -------------------------------------------------------------------------------- /web/frontend/gorph-app/src/components/WasmBridgeSimple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/src/components/WasmBridgeSimple.tsx -------------------------------------------------------------------------------- /web/frontend/gorph-app/src/components/YamlEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/src/components/YamlEditor.tsx -------------------------------------------------------------------------------- /web/frontend/gorph-app/src/services/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/src/services/analytics.ts -------------------------------------------------------------------------------- /web/frontend/gorph-app/src/services/llmService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/src/services/llmService.ts -------------------------------------------------------------------------------- /web/frontend/gorph-app/src/theme/ideTheme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/src/theme/ideTheme.ts -------------------------------------------------------------------------------- /web/frontend/gorph-app/src/utils/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/src/utils/environment.ts -------------------------------------------------------------------------------- /web/frontend/gorph-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/tsconfig.json -------------------------------------------------------------------------------- /web/frontend/gorph-app/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/gorph-app/yarn.lock -------------------------------------------------------------------------------- /web/frontend/public/gorph.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/public/gorph.wasm -------------------------------------------------------------------------------- /web/frontend/public/wasm_exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imran31415/gorph/HEAD/web/frontend/public/wasm_exec.js --------------------------------------------------------------------------------