https://github.com/valiantlynx/ecommerce
Basic ecomerce project. with both admin-backend and frontend done
https://github.com/valiantlynx/ecommerce
Last synced: about 2 months ago
JSON representation
Basic ecomerce project. with both admin-backend and frontend done
- Host: GitHub
- URL: https://github.com/valiantlynx/ecommerce
- Owner: valiantlynx
- Created: 2023-04-16T01:02:43.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-12-14T07:53:03.000Z (over 1 year ago)
- Last Synced: 2025-02-14T13:50:28.900Z (4 months ago)
- Language: JavaScript
- Homepage:
- Size: 131 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ecommerce
# admin
is where you add products and all that.## how to use
the environment variables are in next.config.js, edit them to your use casethen
```
npm i
npm run dev
```
it will start on localhost:3000# frontend
is where you add products and all that.## how to use
the environment variables are in next.config.js, edit them to your use casethen
```
npm i
npm run dev
```
it will start on localhost:3000### adding new projects with their own git history
```sh
git subtree add --prefix=apps/ecommerce https://github.com/valiantlynx/ecommerce.git master --squash
git subtree pull --prefix=apps/ecommerce https://github.com/valiantlynx/ecommerce.git master --squash
git subtree push --prefix=apps/ecommerce https://github.com/valiantlynx/ecommerce.git master```