- Execute the following commands in your terminal:
git clone https://github.com/skver0/coding-test
cd coding-test
npm install
- Create a GitHub access token with access to public repositories.(Guide)
- In
./src/index.jsx
, replaceGITHUB_AUTH_TOKEN
with the generated token.
Builds an unoptimized development version and runs the dev server.
Go to http://localhost:8080 to view it in the browser.
The page will automatically reload if you make any changes.
Builds the app in optimized production mode.
The resulting JavaScript and CSS bundles will be placed in the ./public
folder.
Runs the app built by running npm run build
with sirv in single-page application mode (sirv public --single
).
NOTE: You must run
npm run build
before executing this task.