From 11b42bb63ff20984a4b7e230d1bec16327a59988 Mon Sep 17 00:00:00 2001 From: Umar Adilov <99314948+adilovcode@users.noreply.github.com> Date: Thu, 8 Jan 2026 22:03:21 +0500 Subject: [PATCH] Adopted new taylordb structure --- taylordb.yml | 72 ++++++++++++++++++++++++++-------------------------- 1 file changed, 36 insertions(+), 36 deletions(-) diff --git a/taylordb.yml b/taylordb.yml index 5587cf5..0a97863 100644 --- a/taylordb.yml +++ b/taylordb.yml @@ -1,43 +1,43 @@ +# yaml-language-server: $schema=https://server-vms.develop.taylordb.ai/apps/config-schema/v1 + version: 1 -app: - name: blank - runtime: - type: node - version: 20 - packageManager: pnpm +project: blank -paths: - root: . - dist: dist +runtime: + type: node + version: 20 + packageManager: pnpm -environment: - envVars: - NODE_ENV: production - VITE_TAYLORDB_BASE_ID: vars.TAYLORDB_SERVER_ID - VITE_TAYLORDB_BASE_URL: vars.TAYLORDB_BASE_URL - -install: - commands: - - pnpm install - -build: - commands: - - pnpm build - -dev: - command: pnpm dev - port: 5173 - readyWhen: - log: "Local:" - -start: - command: pnpm start - port: 3000 +services: + server: + workDir: apps/server + install: + commands: + - pnpm install + dev: + command: pnpm dev + port: 3000 + + client: + workDir: apps/client + install: + commands: + - pnpm install + dev: + command: pnpm dev + port: 5173 taylordb: types: - output: src/lib/taylordb.types.ts - format: typescript - onChange: - - pnpm lint + - output: apps/server/taylordb/types.ts + format: typescript + onChange: + - pnpm lint + +preview: + service: client + +routing: + - path: /api + service: server