dosubot[bot] commented on issue #29677:
URL: https://github.com/apache/superset/issues/29677#issuecomment-2247331220

   <!-- Answer -->
   To fix the issue of a broken page and garbled text when running the Superset 
development server at `http://localhost:9000`, ensure that the Webpack dev 
server is running in parallel with the Flask server. Follow these steps:
   
   1. **Run the Flask server on port `8088`:**
      ```bash
      superset run -p 8088 --with-threads --reload --debugger --debug
      ```
   
   2. **Run the Webpack dev server on port `9000`:**
      ```bash
      npm run dev-server
      ```
   
   3. **Access the application via `http://localhost:9000` in your web 
browser.**
   
   This setup ensures that the front-end assets are served correctly by the 
Webpack dev server while backend requests are proxied to the Flask server 
<sup>[[1]](https://github.com/apache/superset/blob/master/docs/docs/contributing/development.mdx)</sup>.
   
   
   <!-- Dosu Comment Footer -->
   *To continue talking to [Dosu](https://dosu.dev), mention @dosu.*
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org
For additional commands, e-mail: notifications-h...@superset.apache.org

Reply via email to