This project uses yarn workspaces, so as a first step you should install all dependencies from the root folder:
yarn install
The example application lives in ./enterjs-app
.
To run the example application:
cd ./enterjs-app
yarn run server
To build and run the example application's Docker image:
cd ./enterjs-app
docker build -t enterjs-app .
docker run --rm -d -p 8080:8080 enterjs-app:latest