diff --git a/docs/5_running.md b/docs/5_running.md index 0a13ec0..a226faf 100644 --- a/docs/5_running.md +++ b/docs/5_running.md @@ -1,5 +1,22 @@ # Running the spot +### Start the Development Server + +Use the following commands to launch the development server with Vite, enabling instant updates: + +```sh +cd app +pnpm run dev +``` + +Please note that this example uses the `pnpm` package manager. For any other package manager such as `npm` or `yarn`, please adjust the command accordingly to run the dev command. + +[Download the pnpm package manager from pnpm.io](https://pnpm.io/installation) +### Access the Vite server + +Access the frontend via the browser link provided by Vite.
+Vite typically runs on port 5173, and can be accessed locally at [localhost:5173](http://localhost:5173/) + > *Prerequsition*: You have successfully built, flashed, and configured your robot. Navigate to `/controller` diff --git a/docs/6_developing.md b/docs/6_developing.md index a318a92..1e258b2 100644 --- a/docs/6_developing.md +++ b/docs/6_developing.md @@ -22,13 +22,4 @@ server: { > Changes require a restart of the development server. -### Start the Development Server -Use the following commands to launch the development server with Vite, enabling instant updates: - -```sh -cd app -pnpm run dev -``` - -Access the frontend via the provided browser link.