This is a demo project used as the basis for the public shared Vendure demo.
This is a demo project used as the basis for the online Vendure demo. The src/index.ts script populates the server using the Vendure CLI populate
command, and then caches the generated pristine data. Every day, this cached data is restored to reset any changes which have been made to the server instance in that time.
To run locally, install dependencies with npm
and then run the instance with npm run comile
and npm start
.
There is a bundled Dockerfile which allows the app to be run in a Docker container.
docker build -t vendure-demo .
docker run --name vendure -p 3000:3000 -d vendure-demo