initial commit: tech_mahindra-studio — frontend wired to studio env (app 164 / org 43)

This commit is contained in:
Bhanu Prakash Sai Potteri 2026-06-04 16:17:34 +05:30
parent e56b94c18c
commit a862ea6351
8 changed files with 9 additions and 1641 deletions

BIN
.DS_Store vendored

Binary file not shown.

2
.gitignore vendored
View File

@ -2,3 +2,5 @@ node_modules/
dist/
.env
*.local
.DS_Store
*-local-command-caveatcaveat-*.txt

4
package-lock.json generated
View File

@ -1,11 +1,11 @@
{
"name": "tech-mahindra",
"name": "tech-mahindra-studio",
"version": "0.1.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "tech-mahindra",
"name": "tech-mahindra-studio",
"version": "0.1.0",
"dependencies": {
"@tanstack/react-query": "^5.60.5",

View File

@ -1,5 +1,5 @@
{
"name": "tech-mahindra",
"name": "tech-mahindra-studio",
"private": true,
"version": "0.1.0",
"type": "module",

BIN
src/.DS_Store vendored

Binary file not shown.

View File

@ -59,7 +59,7 @@ const STATUS: Record<string, { pill: string; dot: string; bar: string; pulse?: b
dot: "bg-stone-400", bar: "bg-stone-400",
},
};
const DS = { pill: "text-stone-600 bg-stone-100 ring-stone-200 dark:text-zinc-400 dark:bg-zinc-800 dark:ring-zinc-700", dot: "bg-stone-400", bar: "bg-stone-300" };
const DS: { pill: string; dot: string; bar: string; pulse?: boolean } = { pill: "text-stone-600 bg-stone-100 ring-stone-200 dark:text-zinc-400 dark:bg-zinc-800 dark:ring-zinc-700", dot: "bg-stone-400", bar: "bg-stone-300" };
const SKIP_KEYS = new Set(["analysis_so_far"]);

View File

@ -1,15 +1,16 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
const devTarget = "https://sandbox.getzino.in";
const devTarget = "https://studio.getzino.in";
const proxy = (target: string) => ({ target, changeOrigin: true, secure: false });
export default defineConfig({
plugins: [react()],
base: process.env.VITE_BASE_URL ?? "/tech_mahindra/",
server: {
port: 3005,
port: 3008,
proxy: {
"/usr": proxy(devTarget),
"/login": proxy(devTarget),
"/apps": proxy(devTarget),
"/agents": proxy(devTarget),