-
i would like to try my hand at helping development. how do i run local in vscode on windows? thanks |
Beta Was this translation helpful? Give feedback.
Answered by
IRHM
Mar 24, 2024
Replies: 1 comment 11 replies
-
Hey @reitenth, these steps should work:
Note: the frontend dev server (vite) will automatically update when you make changes, but the server needs a manual restart for changes to be reflected. Edit: Created a guide for this on the docs site: https://watcharr.app/docs/installation/for-development |
Beta Was this translation helpful? Give feedback.
11 replies
Answer selected by
IRHM
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey @reitenth, these steps should work:
npm i
in project root folder.go get .
in the server folder.npm run server
and in the second, you can start a development frontend server withnpm run dev
.Note: the frontend dev server (vite) will automatically update when you make changes, but the server needs a manual restart for changes to be reflected.
Edit: Created a guide for this on the docs site: https://watcharr.app/docs/ins…