Add a BUILD.md or add instructions #2842
-
Hello! My school blocks monkeytype half of the week and I would like to host my own site with it for private use. How would I go about running this? |
Beta Was this translation helpful? Give feedback.
Answered by
rizwanmustafa
Apr 19, 2022
Replies: 1 comment
-
I recommend you give FrontendFor the frontend, you need to create a production build of the latest release of the monkeytype and serve it using a web server. You can do so by: cd frontend
npm run build:live
cd public
npx server -p 5000 BackendFor the backend, you need to transpile from typescript to javascript and execute the result. You can do so by: cd backend
npm run clean
npm run start |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
polymo1
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I recommend you give
CONTRIBUTING.md
a read. After you have set the project up, here are the remaining deployment steps.Frontend
For the frontend, you need to create a production build of the latest release of the monkeytype and serve it using a web server. You can do so by:
Backend
For the backend, you need to transpile from typescript to javascript and execute the result. You can do so by:
cd backend npm run clean npm run start