mirror of
https://github.com/supabase/supabase.git
synced 2026-06-27 11:02:53 -04:00
9eab4f8fbf
**Stack 1/6** of the TanStack Start migration (#46424), split into reviewable, independently-mergeable PRs. > [!IMPORTANT] > **Next stays the default and only active framework after this PR.** This wires up the Vite/TanStack-Start build pipeline behind the `STUDIO_FRAMEWORK` flag, but there are no TanStack routes yet — so the TanStack build isn't functional or tested until later PRs in the stack. Nothing about the Next build, dev, or deploy changes behaviourally here. ## What's in this PR - **Dispatch:** `dev`/`build`/`start` now go through `scripts/dispatch.js`, which runs the Next variant unless `STUDIO_FRAMEWORK=tanstack`. The original commands are preserved as `dev:next`/`build:next`/`start:next`. - **Build pipeline:** `vite.config.ts`, `serve.js`, `smoke-server.mjs`, vite/tanstack deps, `turbo.jsonc`. - **`tsconfig.json`:** `jsx: react-jsx`, `moduleResolution: Bundler`, `target: ES2022`. Because `include` is `**/*.ts(x)`, this re-typechecks the whole app, so the companion adaptations below land with it. - **Shared adaptations (companions to the tsconfig change):** `BufferSource` casts, `packages/ui` unused-`React` import removals, etc. - **Routing/middleware plumbing:** `next.config.ts` + `redirects.shared.ts` (redirect rules now shared with `vercel.ts`), `proxy.ts`/`start.ts` middleware + `hosted-api-allowlist.ts`. ## Verification Run locally off `master`: frozen install ✓, `studio` typecheck ✓, **Next build ✓** (compiles + generates all routes), lint ratchet ✓ ("some rules improved"), prettier ✓. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Added a hosted API endpoint allowlist to return 404 for non-supported `/api/*` routes. * Introduced a TanStack route-migration checklist and expanded TanStack Start routing support. * **Improvements** * Enhanced deployment refresh/detection by tightening cookie handling for “latest deployment” updates. * Centralized redirect/maintenance-mode rules for consistent platform vs self-hosted behavior. * Improved production serving with a dedicated static + proxy server and a post-build smoke test. * **Dependencies** * Updated TanStack-related packages and React Table/query tooling versions. * **Documentation / Chores** * Updated formatting and tooling config; added shared build environment parsing utilities. <!-- end of auto-generated comment: release notes by coderabbit.ai --> --------- Co-authored-by: Alaister Young <[email protected]> Co-authored-by: Ivan Vasilov <[email protected]>
66 lines
2.1 KiB
JavaScript
66 lines
2.1 KiB
JavaScript
const fs = require('fs')
|
|
const generatedEnv = require('../keys.json')
|
|
|
|
/**
|
|
* This script takes the API keys from the local environment, merges them with some predefined variables and saves them
|
|
* to a env.test file in the studio app. This is needed to prepare the studio so that it can be run with the local
|
|
* environment as the backend.
|
|
*/
|
|
|
|
const defaultEnv = {
|
|
// NEXT_ANALYTICS_BACKEND_PROVIDER: 'postgres',
|
|
// SUPABASE_REST_URL: 'http://127.0.0.1:54321/rest/v1/',
|
|
// NEXT_PUBLIC_ENABLE_LOGS: 'false',
|
|
// E2E tests target self-hosted studio (no auth). Explicitly written so that
|
|
// .env.test overrides any IS_PLATFORM=true that a developer's .env.local
|
|
// might set for their own platform-mode work.
|
|
NEXT_PUBLIC_IS_PLATFORM: 'false',
|
|
PG_META_CRYPTO_KEY: 'SAMPLE_KEY',
|
|
POSTGRES_PASSWORD: 'postgres',
|
|
POSTGRES_HOST: 'db',
|
|
POSTGRES_DB: 'postgres',
|
|
POSTGRES_PORT: '5432',
|
|
SUPABASE_ANON_KEY: '$ANON_KEY',
|
|
SUPABASE_SERVICE_KEY: '$SERVICE_ROLE_KEY',
|
|
SUPABASE_URL: '$API_URL',
|
|
STUDIO_PG_META_URL: '$API_URL/pg',
|
|
SUPABASE_PUBLIC_URL: '$API_URL',
|
|
SENTRY_IGNORE_API_RESOLUTION_ERROR: '1',
|
|
LOGFLARE_URL: 'http://127.0.0.1:54327',
|
|
LOGFLARE_PRIVATE_ACCESS_TOKEN: 'api-key',
|
|
LOGFLARE_API_KEY: 'api-key',
|
|
NEXT_PUBLIC_SITE_URL: 'http://localhost:8082',
|
|
NEXT_PUBLIC_GOTRUE_URL: '$SUPABASE_PUBLIC_URL/auth/v1',
|
|
NEXT_PUBLIC_HCAPTCHA_SITE_KEY: '10000000-ffff-ffff-ffff-000000000001',
|
|
NEXT_PUBLIC_NODE_ENV: 'test',
|
|
SNIPPETS_MANAGEMENT_FOLDER: '../../supabase/snippets',
|
|
EDGE_FUNCTIONS_MANAGEMENT_FOLDER: '../../supabase/functions', // path relative to studio project
|
|
}
|
|
|
|
const environment = { ...generatedEnv, ...defaultEnv }
|
|
|
|
fs.writeFileSync(
|
|
'./apps/studio/.env.test',
|
|
Object.keys(environment)
|
|
.map((key) => `${key}=${environment[key]}`)
|
|
.join('\n')
|
|
)
|
|
|
|
const STUDIO_URL = environment.NEXT_PUBLIC_SITE_URL
|
|
const WEB_SERVER_PORT = new URL(STUDIO_URL).port ?? undefined
|
|
const API_URL = environment.API_URL
|
|
|
|
const e2eTestEnv = {
|
|
STUDIO_URL,
|
|
API_URL,
|
|
WEB_SERVER_PORT,
|
|
IS_PLATFORM: 'false',
|
|
}
|
|
|
|
fs.writeFileSync(
|
|
'./e2e/studio/.env.local',
|
|
Object.keys(e2eTestEnv)
|
|
.map((key) => `${key}=${e2eTestEnv[key]}`)
|
|
.join('\n')
|
|
)
|