Install the dependencies and devDependencies and start the server.
yarn
yarn serve
For production release:
yarn build
Application is very easy to install and deploy in a Docker container.
By default, the Docker will expose port 8080, so change this within the Dockerfile if necessary. When ready, simply use the Dockerfile to build the image.
docker build -t clean-frontend .
docker run -d -p 8000:8080 --restart=always --name=clean-frontend clean-frontend
MIT
All questions: [email protected]