diff --git a/apps/server/.env.example b/.env.example similarity index 100% rename from apps/server/.env.example rename to .env.example diff --git a/.gitignore b/.gitignore index ce51d38..c56e5a3 100644 --- a/.gitignore +++ b/.gitignore @@ -9,9 +9,6 @@ # Bun build *.bun-build -# Turborepo -.turbo/ - ### Node ### # Logs diff --git a/AGENTS.md b/AGENTS.md index 48c41a9..49196a4 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -1,81 +1,52 @@ # AGENTS.md - AI Coding Agent Guidelines -Guidelines for AI agents working in this Bun monorepo. +Guidelines for AI agents working in this project. ## Project Overview > **This project uses [Bun](https://bun.sh) exclusively as both the JavaScript runtime and package manager. Do NOT use Node.js / npm / yarn / pnpm. All commands start with `bun` — use `bun install` for dependencies and `bun run - - diff --git a/apps/desktop/src/renderer/main.tsx b/apps/desktop/src/renderer/main.tsx deleted file mode 100644 index 606e6be..0000000 --- a/apps/desktop/src/renderer/main.tsx +++ /dev/null @@ -1,11 +0,0 @@ -import { StrictMode } from 'react' -import { createRoot } from 'react-dom/client' -import { SplashApp } from './components/SplashApp' -import './styles.css' - -// biome-ignore lint/style/noNonNullAssertion: 一定存在 -createRoot(document.getElementById('root')!).render( - - - , -) diff --git a/apps/desktop/tsconfig.app.json b/apps/desktop/tsconfig.app.json deleted file mode 100644 index a0f1193..0000000 --- a/apps/desktop/tsconfig.app.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "extends": "@furtherverse/tsconfig/react.json", - "compilerOptions": { - "composite": true, - "types": ["vite/client"] - }, - "include": ["src/renderer/**/*"] -} diff --git a/apps/desktop/tsconfig.json b/apps/desktop/tsconfig.json deleted file mode 100644 index ea9d0cd..0000000 --- a/apps/desktop/tsconfig.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "files": [], - "references": [ - { - "path": "./tsconfig.app.json" - }, - { - "path": "./tsconfig.node.json" - } - ] -} diff --git a/apps/desktop/tsconfig.node.json b/apps/desktop/tsconfig.node.json deleted file mode 100644 index 9757384..0000000 --- a/apps/desktop/tsconfig.node.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "extends": "@furtherverse/tsconfig/base.json", - "compilerOptions": { - "composite": true, - "types": ["node"] - }, - "include": ["src/main/**/*", "src/preload/**/*", "electron.vite.config.ts"] -} diff --git a/apps/desktop/turbo.json b/apps/desktop/turbo.json deleted file mode 100644 index caaa62b..0000000 --- a/apps/desktop/turbo.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "$schema": "../../node_modules/turbo/schema.json", - "extends": ["//"], - "tasks": { - "build": { - "outputs": ["out/**"] - }, - "dist": { - "dependsOn": ["build", "@furtherverse/server#compile"], - "outputs": ["dist/**"] - }, - "dist:linux": { - "dependsOn": ["build", "@furtherverse/server#compile:linux:arm64", "@furtherverse/server#compile:linux:x64"], - "outputs": ["dist/**"] - }, - "dist:linux:arm64": { - "dependsOn": ["build", "@furtherverse/server#compile:linux:arm64"], - "outputs": ["dist/**"] - }, - "dist:linux:x64": { - "dependsOn": ["build", "@furtherverse/server#compile:linux:x64"], - "outputs": ["dist/**"] - }, - "dist:mac": { - "dependsOn": ["build", "@furtherverse/server#compile:darwin:arm64", "@furtherverse/server#compile:darwin:x64"], - "outputs": ["dist/**"] - }, - "dist:mac:arm64": { - "dependsOn": ["build", "@furtherverse/server#compile:darwin:arm64"], - "outputs": ["dist/**"] - }, - "dist:mac:x64": { - "dependsOn": ["build", "@furtherverse/server#compile:darwin:x64"], - "outputs": ["dist/**"] - }, - "dist:win": { - "dependsOn": ["build", "@furtherverse/server#compile:windows:x64"], - "outputs": ["dist/**"] - } - } -} diff --git a/apps/server/AGENTS.md b/apps/server/AGENTS.md deleted file mode 100644 index 0b5c77d..0000000 --- a/apps/server/AGENTS.md +++ /dev/null @@ -1,278 +0,0 @@ -# AGENTS.md - Server App Guidelines - -TanStack Start fullstack web app with ORPC (contract-first RPC). - -## Tech Stack - -> **⚠️ This project uses Bun — NOT Node.js / npm. All commands use `bun`. Always use `bun run