This repository has been archived by the owner on Aug 2, 2021. It is now read-only.
How to build and run the site locally? #290
-
Excuse me, I want to know how the code is executed. Because I have loaded the folder and tried to run it in visual studio code and it shows a window saying hello jerkin . I would like to know how to run it. Thank you |
Beta Was this translation helpful? Give feedback.
Answered by
EliteMasterEric
Jan 21, 2021
Replies: 1 comment 3 replies
-
To run the site locally:
If you want to build the site for production, run |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
EliteMasterEric
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To run the site locally:
npm install
. This should install all the project dependencies into the./node_modules
folder.npm run start:dev
. This should launch the site in development mode, accessible athttps://localhost:3000
.If you want to build the site for production, run
npm run build
and the artifacts will be in the./build
folder.