From 95114bbfe7392691d18110c91a3426002f9dbf0c Mon Sep 17 00:00:00 2001 From: Steve Piercy Date: Wed, 27 Nov 2024 01:32:33 -0800 Subject: [PATCH] Use naked URLs and other MyST markup fixes --- docs/plone-deployment/project-start.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/plone-deployment/project-start.md b/docs/plone-deployment/project-start.md index 7f2e768a..5935d5d4 100644 --- a/docs/plone-deployment/project-start.md +++ b/docs/plone-deployment/project-start.md @@ -9,11 +9,11 @@ myst: # Start the Project -The {term}`cookieplone` equips you with essential tools to initiate a local development environment. The {doc}`project-new` offers two methods to launch your project: manually starting the Backend and Frontend servers, or utilizing a Docker Compose stack. +The {term}`cookieplone` equips you with essential tools to initiate a local development environment. {doc}`project-new` offers two methods to launch your project: manually starting the Backend and Frontend servers, or utilizing a Docker Compose stack. ## Running Local Servers -This method requires two terminals as both Backend and Frontend operate in `foreground mode`. It's optimal for local development due to its swift change and restart cycle. However, accessing each server on their internal ports can lead to CORS issues in real-world deployments. +This method requires two terminals as both Backend and Frontend operate in "foreground mode". It's optimal for local development due to its swift change and restart cycle. However, accessing each server on their internal ports can lead to CORS issues in real-world deployments. ### Starting the Backend @@ -25,11 +25,11 @@ make backend-start This command initiates the Backend server. Upon successful startup, you'll observe: -``` +```console ... INFO [waitress:486][MainThread] Serving on http://127.0.0.1:8080 ``` -Indicating the server is operational and awaiting requests on port 8080. Visit [http://localhost:8080](http://localhost:8080) to explore. +Indicating the server is operational and awaiting requests on port 8080. Visit http://localhost:8080 to explore. ```{figure} _static/start_backend_localhost.png :alt: Backend server initiation at http://localhost:8080 @@ -52,7 +52,7 @@ The Frontend initiation takes longer due to the initial codebase compilation. A 🎭 Volto started at 0.0.0.0:3000 🚀 ``` -Signifying the Frontend server is active on port 3000. Access it via [http://localhost:3000](http://localhost:3000). +Signifying the Frontend server is active on port 3000. Access it via http://localhost:3000. ```{figure} _static/start_frontend_localhost.png :alt: Frontend server initiation at http://localhost:3000 @@ -108,7 +108,7 @@ Re-run `make stack-status`, and both Backend and Frontend should now display a * ### Accessing the Site -Your website is accessible at [http://ploneconf2024.localhost](http://ploneconf2024.localhost). +Your website is accessible at http://ploneconf2024.localhost. ```{figure} _static/start_stack_localhost.png :alt: Accessing the site at http://ploneconf2024.localhost