From b311e2dd622765c9e353a6e7d88527eab101169a Mon Sep 17 00:00:00 2001 From: Pavan Shinde Date: Sun, 5 Apr 2026 07:53:03 +0530 Subject: [PATCH 1/4] docs: add auth login script and fix local README setup --- README.md | 2 +- package.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e46644d25..d238b1842 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ git clone git@github.com:TanStack/form.git ```sh cd tanstack.com pnpm i -# The app will run on https://localhost:3000 by default +# The app will run on http://localhost:3000 by default pnpm dev ``` diff --git a/package.json b/package.json index 74af83819..35a38a977 100644 --- a/package.json +++ b/package.json @@ -7,6 +7,7 @@ "type": "module", "scripts": { "dev": "pnpm run with-env vite dev", + "auth:login": "tsx scripts/auth-login.ts", "with-env": "dotenv -e ../../.env", "dev:frontend": "pnpm run with-env vite dev", "build": "vite build && cp src/instrument.server.mjs dist/server", From a378dad00e84290eea77b6a6a9d85141f3bb1a29 Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Sun, 26 Apr 2026 01:50:00 +0000 Subject: [PATCH 2/4] ci: apply automated fixes --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 30bfe9cfd..716693b6e 100644 --- a/README.md +++ b/README.md @@ -70,6 +70,7 @@ pnpm i # The app will run on http://localhost:3000 by default pnpm dev ``` + - We welcome issues and pull requests! - Participate in [GitHub Discussions](https://github.com/TanStack/tanstack.com/discussions) - Chat with the community on [Discord](https://discord.com/invite/WrRKjPJ) From bbb66f59a7f36d2fce52f1fc677bfaa1abc0db06 Mon Sep 17 00:00:00 2001 From: Pavan Shinde Date: Sun, 26 Apr 2026 07:22:53 +0530 Subject: [PATCH 3/4] Remove local setup instructions from README Removed setup instructions for running the app locally. --- README.md | 7 ------- 1 file changed, 7 deletions(-) diff --git a/README.md b/README.md index 716693b6e..2aae87b11 100644 --- a/README.md +++ b/README.md @@ -64,13 +64,6 @@ To edit docs for a project, make changes in its `docs/` folder (e.g., `../form/d ## Get Involved -```sh -cd tanstack.com -pnpm i -# The app will run on http://localhost:3000 by default -pnpm dev -``` - - We welcome issues and pull requests! - Participate in [GitHub Discussions](https://github.com/TanStack/tanstack.com/discussions) - Chat with the community on [Discord](https://discord.com/invite/WrRKjPJ) From 2bcd6ceff3107dee429c722fda303975ac662b69 Mon Sep 17 00:00:00 2001 From: Pavan Shinde Date: Sun, 26 Apr 2026 07:23:32 +0530 Subject: [PATCH 4/4] Change environment file for 'with-env' script Updated the 'with-env' script to use '.env.local' instead of '../../.env'. --- package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/package.json b/package.json index e95d38dd3..925fd3d22 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,6 @@ "scripts": { "dev": "pnpm run with-env vite dev", "auth:login": "tsx scripts/auth-login.ts", - "with-env": "dotenv -e ../../.env", "with-env": "dotenv -e .env.local", "dev:frontend": "pnpm run with-env vite dev", "build": "vite build",