Build and deployment

Build static files from source

This process bundles js, css, and html as static stand-alone files.

npm run build

Those can be served by any static file server without any dependencies.

Deploy using Docker

The project includes Docker and docker-compose files for deployment.

Build and run it directly with docker-compose:

docker-compose up

Or build the container…

docker build -t seven23 .

…and run it:

docker run -p 80:80 -ti seven23