An open API service indexing awesome lists of open source software.

https://github.com/vendure-ecommerce/vendure-demo

A dockerized demo project showcasing the Vendure server
https://github.com/vendure-ecommerce/vendure-demo

Last synced: 6 months ago
JSON representation

A dockerized demo project showcasing the Vendure server

Awesome Lists containing this project

README

          



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.

```bash
docker build -t vendure-demo .
```

```bash
docker run --name vendure -p 3000:3000 -d vendure-demo
```