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
- Host: GitHub
- URL: https://github.com/vendure-ecommerce/vendure-demo
- Owner: vendure-ecommerce
- Created: 2019-02-27T14:12:01.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-04-02T09:18:53.000Z (7 months ago)
- Last Synced: 2025-04-12T06:27:58.247Z (6 months ago)
- Language: TypeScript
- Homepage: https://demo.vendure.io
- Size: 4.62 MB
- Stars: 28
- Watchers: 2
- Forks: 20
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Vendure Public Demo
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.
## 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
```