https://github.com/adimoldovan/demo-shop
E-commerce app built for test automation practice.
https://github.com/adimoldovan/demo-shop
automation-ui demo-shop e-commerce-app practice-automation practice-project react test-automation testing-tools
Last synced: 4 months ago
JSON representation
E-commerce app built for test automation practice.
- Host: GitHub
- URL: https://github.com/adimoldovan/demo-shop
- Owner: adimoldovan
- Created: 2020-04-30T09:20:51.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-05-24T12:00:48.000Z (about 3 years ago)
- Last Synced: 2023-03-05T01:52:58.350Z (over 2 years ago)
- Topics: automation-ui, demo-shop, e-commerce-app, practice-automation, practice-project, react, test-automation, testing-tools
- Language: JavaScript
- Homepage: https://demo-shop.vercel.app
- Size: 7.59 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Demo online shop
Simple e-commerce app built for test automation practice. Built with React.
| Github pages | Heroku | Vercel | Netlify | Render |
| --- | --- | --- | --- | --- |
| [](https://adimoldovan.github.io/demo-shop) | [](https://tau-demo-shop.herokuapp.com) | [](https://demo-shop.vercel.app/#/) | [](https://tau-demo-shop.netlify.app/) | [](https://demo-shop.onrender.com/#/) |## Run the app
### Local dev server
```sh
npm start
```### Using Docker
There is a public image already built that you can use:
```sh
docker run -d --name demo-shop -p 9100:80 adimoldovan/demo-shop
```You can also build your own image:
```sh
docker build -t demo-shop .
docker run --name demo-shop -p 9100:80 demo-shop
```