chore(template): move client to repo root and reconfigure for client-only - #1
Merged
staana-matthew merged 5 commits intoJun 10, 2026
Merged
Conversation
This repo was forked from a React+Express+Supabase template but the final product is a client-only React template. Remove the unused `server/` and `supabase/` scaffolding, eliminate related scripts and cleanup references so local dev and CI run client-only. This reduces confusion for new users and removes unused dev deps.
Move all client-side sources and config out of `client/` into the repository root to simplify the template layout and reduce confusion for template users. Update import paths and config references that pointed at `client/`. Remove the now-empty `client/` directory. This keeps the template minimal and makes standard `npm run` scripts work from the repo root.
Update `.vscode` workspace settings and recommended extensions to point at the repository root rather than `client/`. Remove settings that referenced server-side launch configs or workspace folders. This makes the VS Code experience consistent for developers using the client-only template.
Remove server/supabase-related jobs and steps from CI workflows and ensure the build/test matrix only runs client tasks (install, lint, typecheck, build, test). Simplify secrets/env usage to avoid server deploy steps that no longer exist. This reduces CI run time and avoids failed jobs due to removed services.
Adjust `package.json` scripts and dependencies, remove server-only devDependencies, and update `vite.config.ts`, `tsconfig.json`, and `tsconfig.app.json` to exclude server paths and include client source locations at the repo root. Wrap up with a README update detailing root-level dev commands.
staana-matthew
added a commit
that referenced
this pull request
Jun 10, 2026
…only (#1) * chore(project): remove server and supabase scaffolding This repo was forked from a React+Express+Supabase template but the final product is a client-only React template. Remove the unused `server/` and `supabase/` scaffolding, eliminate related scripts and cleanup references so local dev and CI run client-only. This reduces confusion for new users and removes unused dev deps. * chore(restructure): move client contents from client/ to repo root Move all client-side sources and config out of `client/` into the repository root to simplify the template layout and reduce confusion for template users. Update import paths and config references that pointed at `client/`. Remove the now-empty `client/` directory. This keeps the template minimal and makes standard `npm run` scripts work from the repo root. * chore(vscode): update workspace settings for root-based dev Update `.vscode` workspace settings and recommended extensions to point at the repository root rather than `client/`. Remove settings that referenced server-side launch configs or workspace folders. This makes the VS Code experience consistent for developers using the client-only template. * ci(github): update GitHub Actions workflows to client-only builds Remove server/supabase-related jobs and steps from CI workflows and ensure the build/test matrix only runs client tasks (install, lint, typecheck, build, test). Simplify secrets/env usage to avoid server deploy steps that no longer exist. This reduces CI run time and avoids failed jobs due to removed services. * chore(config): update package.json, Vite and TS configs for client-only Adjust `package.json` scripts and dependencies, remove server-only devDependencies, and update `vite.config.ts`, `tsconfig.json`, and `tsconfig.app.json` to exclude server paths and include client source locations at the repo root. Wrap up with a README update detailing root-level dev commands.
staana-matthew
added a commit
that referenced
this pull request
Jun 10, 2026
…only (#1) * chore(project): remove server and supabase scaffolding This repo was forked from a React+Express+Supabase template but the final product is a client-only React template. Remove the unused `server/` and `supabase/` scaffolding, eliminate related scripts and cleanup references so local dev and CI run client-only. This reduces confusion for new users and removes unused dev deps. * chore(restructure): move client contents from client/ to repo root Move all client-side sources and config out of `client/` into the repository root to simplify the template layout and reduce confusion for template users. Update import paths and config references that pointed at `client/`. Remove the now-empty `client/` directory. This keeps the template minimal and makes standard `npm run` scripts work from the repo root. * chore(vscode): update workspace settings for root-based dev Update `.vscode` workspace settings and recommended extensions to point at the repository root rather than `client/`. Remove settings that referenced server-side launch configs or workspace folders. This makes the VS Code experience consistent for developers using the client-only template. * ci(github): update GitHub Actions workflows to client-only builds Remove server/supabase-related jobs and steps from CI workflows and ensure the build/test matrix only runs client tasks (install, lint, typecheck, build, test). Simplify secrets/env usage to avoid server deploy steps that no longer exist. This reduces CI run time and avoids failed jobs due to removed services. * chore(config): update package.json, Vite and TS configs for client-only Adjust `package.json` scripts and dependencies, remove server-only devDependencies, and update `vite.config.ts`, `tsconfig.json`, and `tsconfig.app.json` to exclude server paths and include client source locations at the repo root. Wrap up with a README update detailing root-level dev commands.
staana-matthew
added a commit
that referenced
this pull request
Jun 10, 2026
…only (#1) * chore(project): remove server and supabase scaffolding This repo was forked from a React+Express+Supabase template but the final product is a client-only React template. Remove the unused `server/` and `supabase/` scaffolding, eliminate related scripts and cleanup references so local dev and CI run client-only. This reduces confusion for new users and removes unused dev deps. * chore(restructure): move client contents from client/ to repo root Move all client-side sources and config out of `client/` into the repository root to simplify the template layout and reduce confusion for template users. Update import paths and config references that pointed at `client/`. Remove the now-empty `client/` directory. This keeps the template minimal and makes standard `npm run` scripts work from the repo root. * chore(vscode): update workspace settings for root-based dev Update `.vscode` workspace settings and recommended extensions to point at the repository root rather than `client/`. Remove settings that referenced server-side launch configs or workspace folders. This makes the VS Code experience consistent for developers using the client-only template. * ci(github): update GitHub Actions workflows to client-only builds Remove server/supabase-related jobs and steps from CI workflows and ensure the build/test matrix only runs client tasks (install, lint, typecheck, build, test). Simplify secrets/env usage to avoid server deploy steps that no longer exist. This reduces CI run time and avoids failed jobs due to removed services. * chore(config): update package.json, Vite and TS configs for client-only Adjust `package.json` scripts and dependencies, remove server-only devDependencies, and update `vite.config.ts`, `tsconfig.json`, and `tsconfig.app.json` to exclude server paths and include client source locations at the repo root. Wrap up with a README update detailing root-level dev commands.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Move the client app from
client/into the repository root andreconfigure workspace, CI, and build settings for a client-only React
TypeScript template.
What Changed
client/).package.jsonscripts and pruned server-only dependencies.vite.config.ts,tsconfig.json, andtsconfig.app.json..vscodeworkspace settings andextensions.json.README.mdto reflect root-based setup and commands.What
This PR converts the repository to a client-only React TypeScript
template by relocating the client and removing backend scaffolding.
Why
The original template included
server/andsupabase/boilerplatethat is not used by this project. Keeping that scaffolding causes
confusion, stale dependencies, and failing CI steps for consumers of
the template. Centralizing the client at the repo root simplifies
developer workflows and tooling.
How
client/into the repo root; update import paths.package.jsonto keep only client scripts (dev,build,test,lint,format).vite.config.tsand TypeScript configs to remove serverreferences and ensure correct path aliases.
.github/workflows/*to remove server jobs and only runclient install/lint/build/test steps.
.vscodesettings to reference the root workspace.Testing
npm run format(already executed)npm run dev— app should loadnpm run build— build should succeednpm run test:run— update failing tests that referencedremoved mocks
.github/workflows/ci.ymlpasses on pushPre-Merge Checklist
devinto this branchclient/