From 983853659d5afd5dc71cd672c7e08e1abec1598d Mon Sep 17 00:00:00 2001 From: Mumtahin Farabi Date: Fri, 16 Aug 2024 16:49:18 -0400 Subject: [PATCH] docs(contribution-guidelines): improve clarity of localhost url on step 9 --- .../docs/contribution-guidelines/index.mdx | 25 ++++++++++++++++--- 1 file changed, 21 insertions(+), 4 deletions(-) diff --git a/apps/docs/src/content/docs/contribution-guidelines/index.mdx b/apps/docs/src/content/docs/contribution-guidelines/index.mdx index 2e9eb832..20a7f080 100644 --- a/apps/docs/src/content/docs/contribution-guidelines/index.mdx +++ b/apps/docs/src/content/docs/contribution-guidelines/index.mdx @@ -431,12 +431,29 @@ Nx comes with local caching already built-in (check your `nx.json`). On CI you m
-Open the url(s) in your browser for the project(s) you're running. +You'll see the url(s) in your terminal for the project(s) you're running, simply paste those in to your browser address bar. -Open [http://localhost:8000](http://localhost:8000) in your browser to see the app. -Docs are on [http://localhost:8000/docs](http://localhost:8000/docs). + For example you may see: -
+```sh title="Terminal" +╰─ nx dev docs + +> nx run docs:dev + +> next dev + +▲ Next.js 14.2.3 + +- Local: +✓ Starting... +automatically enabled Fast Refresh for 1 custom loader +``` + +As the project is in its early stages, these URLs may change. If you have multiple apps running or have another server using that network port, yours may be different from someone else's and that's okay. + +Always look at your terminal for the correct URL. + + ### Final Step