Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .coderabbit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ reviews:
collapse_walkthrough: false
profile: "chill"
high_level_summary: true
request_changes_workflow: true
request_changes_workflow: false
poem: false
in_progress_fortune: false
sequence_diagrams: false
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"scripts": {
"fetch-openapi": "tsx ./scripts/fetch-openapi.ts",
"generate:management-api-docs": "rimraf ./content/docs/management-api/endpoints/**/*.mdx && pnpm run fetch-openapi && tsx ./scripts/generate-docs.ts && fumadocs-mdx",
"prebuild": "rimraf out",
"build": "pnpm run fetch-openapi && next build",
"start": "next start",
"dev": "next dev",
"check": "oxfmt . --write && oxlint . --fix",
"types:check": "fumadocs-mdx && next typegen && tsc --noEmit",
Expand Down
2 changes: 1 addition & 1 deletion apps/docs/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export default defineConfig({

/* Run your local dev server before starting the tests */
webServer: {
command: process.env.CI ? "npx serve@latest out -l 3000" : "pnpm run dev",
command: process.env.CI ? "pnpm run start" : "pnpm run dev",
url: "http://localhost:3000",
reuseExistingServer: !process.env.CI,
timeout: 60 * 1000, // 1 minute
Expand Down
Loading