Skip to content

Latest commit

 

History

History
40 lines (30 loc) · 1.34 KB

README.md

File metadata and controls

40 lines (30 loc) · 1.34 KB

Vendure logo

Vendure Public Demo

This is a demo project used as the basis for the public shared Vendure demo.

Join our Discord Follow @vendure_io

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.

Running Locally

To run locally, install dependencies with npm and then run the instance with npm run comile and npm start.

Running in Docker

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