From d0a0bbfa610402c1233ce77ebca9ac16a67cd046 Mon Sep 17 00:00:00 2001 From: Claas Date: Wed, 19 Jun 2024 15:13:03 +0200 Subject: [PATCH] Rename to easier to separate parts of project This is in preparation for the docker setup --- {chat => client}/.gitignore | 0 {chat => client}/README.md | 0 {chat => client}/index.html | 0 {chat => client}/package.json | 0 {chat => client}/pnpm-lock.yaml | 0 {chat => client}/postcss.config.js | 0 {chat => client}/public/logo-04.svg | 0 {chat => client}/src/assets/solid.svg | 0 {chat => client}/src/components/TopAppBar.tsx | 0 {chat => client}/src/context.tsx | 0 {chat => client}/src/index.css | 0 {chat => client}/src/index.tsx | 0 {chat => client}/src/routes/Chat.tsx | 0 {chat => client}/src/routes/Index.tsx | 0 {chat => client}/src/routes/SetUp.tsx | 0 {chat => client}/src/vite-env.d.ts | 0 {chat => client}/tailwind.config.js | 0 {chat => client}/tsconfig.json | 0 {chat => client}/tsconfig.node.json | 0 {chat => client}/vite.config.ts | 0 20 files changed, 0 insertions(+), 0 deletions(-) rename {chat => client}/.gitignore (100%) rename {chat => client}/README.md (100%) rename {chat => client}/index.html (100%) rename {chat => client}/package.json (100%) rename {chat => client}/pnpm-lock.yaml (100%) rename {chat => client}/postcss.config.js (100%) rename {chat => client}/public/logo-04.svg (100%) rename {chat => client}/src/assets/solid.svg (100%) rename {chat => client}/src/components/TopAppBar.tsx (100%) rename {chat => client}/src/context.tsx (100%) rename {chat => client}/src/index.css (100%) rename {chat => client}/src/index.tsx (100%) rename {chat => client}/src/routes/Chat.tsx (100%) rename {chat => client}/src/routes/Index.tsx (100%) rename {chat => client}/src/routes/SetUp.tsx (100%) rename {chat => client}/src/vite-env.d.ts (100%) rename {chat => client}/tailwind.config.js (100%) rename {chat => client}/tsconfig.json (100%) rename {chat => client}/tsconfig.node.json (100%) rename {chat => client}/vite.config.ts (100%) diff --git a/chat/.gitignore b/client/.gitignore similarity index 100% rename from chat/.gitignore rename to client/.gitignore diff --git a/chat/README.md b/client/README.md similarity index 100% rename from chat/README.md rename to client/README.md diff --git a/chat/index.html b/client/index.html similarity index 100% rename from chat/index.html rename to client/index.html diff --git a/chat/package.json b/client/package.json similarity index 100% rename from chat/package.json rename to client/package.json diff --git a/chat/pnpm-lock.yaml b/client/pnpm-lock.yaml similarity index 100% rename from chat/pnpm-lock.yaml rename to client/pnpm-lock.yaml diff --git a/chat/postcss.config.js b/client/postcss.config.js similarity index 100% rename from chat/postcss.config.js rename to client/postcss.config.js diff --git a/chat/public/logo-04.svg b/client/public/logo-04.svg similarity index 100% rename from chat/public/logo-04.svg rename to client/public/logo-04.svg diff --git a/chat/src/assets/solid.svg b/client/src/assets/solid.svg similarity index 100% rename from chat/src/assets/solid.svg rename to client/src/assets/solid.svg diff --git a/chat/src/components/TopAppBar.tsx b/client/src/components/TopAppBar.tsx similarity index 100% rename from chat/src/components/TopAppBar.tsx rename to client/src/components/TopAppBar.tsx diff --git a/chat/src/context.tsx b/client/src/context.tsx similarity index 100% rename from chat/src/context.tsx rename to client/src/context.tsx diff --git a/chat/src/index.css b/client/src/index.css similarity index 100% rename from chat/src/index.css rename to client/src/index.css diff --git a/chat/src/index.tsx b/client/src/index.tsx similarity index 100% rename from chat/src/index.tsx rename to client/src/index.tsx diff --git a/chat/src/routes/Chat.tsx b/client/src/routes/Chat.tsx similarity index 100% rename from chat/src/routes/Chat.tsx rename to client/src/routes/Chat.tsx diff --git a/chat/src/routes/Index.tsx b/client/src/routes/Index.tsx similarity index 100% rename from chat/src/routes/Index.tsx rename to client/src/routes/Index.tsx diff --git a/chat/src/routes/SetUp.tsx b/client/src/routes/SetUp.tsx similarity index 100% rename from chat/src/routes/SetUp.tsx rename to client/src/routes/SetUp.tsx diff --git a/chat/src/vite-env.d.ts b/client/src/vite-env.d.ts similarity index 100% rename from chat/src/vite-env.d.ts rename to client/src/vite-env.d.ts diff --git a/chat/tailwind.config.js b/client/tailwind.config.js similarity index 100% rename from chat/tailwind.config.js rename to client/tailwind.config.js diff --git a/chat/tsconfig.json b/client/tsconfig.json similarity index 100% rename from chat/tsconfig.json rename to client/tsconfig.json diff --git a/chat/tsconfig.node.json b/client/tsconfig.node.json similarity index 100% rename from chat/tsconfig.node.json rename to client/tsconfig.node.json diff --git a/chat/vite.config.ts b/client/vite.config.ts similarity index 100% rename from chat/vite.config.ts rename to client/vite.config.ts -- 2.51.2