Skip to content

Latest commit

 

History

History
35 lines (22 loc) · 1.18 KB

DEVELOP_AND_DEPLOY.md

File metadata and controls

35 lines (22 loc) · 1.18 KB

Development and Deployment

Prerequisites

  • Node.js 16.0+

The project uses Prettier for formatting, as well as ESLint and Stylelint for linting. You can have a look at their respective editor integration documentation to see how to use them with your development environment:

Run project locally

To start:

npm install
npm start

Then open your browser at http://localhost:3000/

Create productive build

npm run build
npm run serve

The build command will output all the files needed for serving the web application to the dist folder.

Deploy to GitHub Pages

The application is set up to be deployed to Github pages using Github Actions. To configure your repository to support the workflow, follow steps 1-5 of "Publishing with a custom GitHub Action workflow".