https://github.com/marius-pieptea/mern-e-commerce-boilerplate
E-Shop is a full-stack e-commerce application built with the MERN stack (MongoDB, Express, React, Node.js) featuring JWT-based authentication, product management, shopping cart, order processing, and responsive design with Material-UI.
https://github.com/marius-pieptea/mern-e-commerce-boilerplate
ecommerce express jwt material-ui mern-stack mongodb nodejs react vite
Last synced: 3 months ago
JSON representation
E-Shop is a full-stack e-commerce application built with the MERN stack (MongoDB, Express, React, Node.js) featuring JWT-based authentication, product management, shopping cart, order processing, and responsive design with Material-UI.
- Host: GitHub
- URL: https://github.com/marius-pieptea/mern-e-commerce-boilerplate
- Owner: marius-pieptea
- Created: 2024-11-23T16:56:06.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-07-22T18:10:40.000Z (12 months ago)
- Last Synced: 2025-07-22T20:19:18.940Z (12 months ago)
- Topics: ecommerce, express, jwt, material-ui, mern-stack, mongodb, nodejs, react, vite
- Language: JavaScript
- Homepage:
- Size: 298 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.Docker.md
Awesome Lists containing this project
README
### Building and running your application
When you're ready, start your application by running:
`docker compose up --build`.
Your application will be available at http://localhost:3004.
### Deploying your application to the cloud
First, build your image, e.g.: `docker build -t myapp .`.
If your cloud uses a different CPU architecture than your development
machine (e.g., you are on a Mac M1 and your cloud provider is amd64),
you'll want to build the image for that platform, e.g.:
`docker build --platform=linux/amd64 -t myapp .`.
Then, push it to your registry, e.g. `docker push myregistry.com/myapp`.
Consult Docker's [getting started](https://docs.docker.com/go/get-started-sharing/)
docs for more detail on building and pushing.
### References
* [Docker's Node.js guide](https://docs.docker.com/language/nodejs/)