From 9d7399769a8a611489d751ddc407ca6ed544a915 Mon Sep 17 00:00:00 2001 From: George Powell Date: Thu, 5 Feb 2026 18:13:30 -0500 Subject: [PATCH] some little wording changes xd --- CLAUDE.md | 4 ++-- README.md | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CLAUDE.md b/CLAUDE.md index a203da9..9456fb3 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -59,8 +59,8 @@ bun run preview # Database operations bun run db:push # Push schema changes to database -bun run db:generate # Generate migrations -bun run db:migrate # Run migrations +bun run db:generate # Generate migrations (DO NOT RUN) +bun run db:migrate # Run migrations (DO NOT RUN) bun run db:studio # Open Drizzle Studio GUI ``` diff --git a/README.md b/README.md index 75842c4..ce19680 100644 --- a/README.md +++ b/README.md @@ -8,10 +8,10 @@ If you're seeing this, you've probably already done this step. Congrats! ```sh # create a new project in the current directory -npx sv create +bunx sv create # create a new project in my-app -npx sv create my-app +bunx sv create my-app ``` ## Developing @@ -19,10 +19,10 @@ npx sv create my-app Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server: ```sh -npm run dev +bun run dev # or start the server and open the app in a new browser tab -npm run dev -- --open +bun run dev -- --open ``` ## Building @@ -30,9 +30,9 @@ npm run dev -- --open To create a production version of your app: ```sh -npm run build +bun run build ``` -You can preview the production build with `npm run preview`. +You can preview the production build with `bun run preview`. > To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment.