backend redesign

This commit is contained in:
2026-03-11 18:47:11 -04:00
parent 8ff277c8c6
commit e99ef5d2dd
210 changed files with 12147 additions and 155 deletions

38
deploy/k8s/base/web.yaml Normal file
View File

@@ -0,0 +1,38 @@
---
apiVersion: v1
kind: Service
metadata:
name: ai-web
spec:
selector:
app: ai-web
ports:
- protocol: TCP
port: 5173
targetPort: 5173
type: ClusterIP
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: ai-web
spec:
replicas: 1
selector:
matchLabels:
app: ai-web
template:
metadata:
labels:
app: ai-web
spec:
containers:
- name: ai-web
image: dexorder/ai-web
ports:
- containerPort: 5173
env:
- name: VITE_BASE_PATH
value: "/cryptochimp/"
- name: VITE_WS_URL
value: "wss://dexorder.ai/ws"