Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vaughan189/react-reserve
An E-Commerce Web App using ReactJS and NodeJS
https://github.com/vaughan189/react-reserve
Last synced: 1 day ago
JSON representation
An E-Commerce Web App using ReactJS and NodeJS
- Host: GitHub
- URL: https://github.com/vaughan189/react-reserve
- Owner: vaughan189
- Created: 2020-12-07T10:05:37.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2020-12-07T11:02:25.000Z (about 4 years ago)
- Last Synced: 2024-11-05T11:09:54.422Z (about 2 months ago)
- Language: JavaScript
- Size: 221 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React Reserve
### An E-Commerce Web App using ReactJS and NodeJS## Starting App
```
git clone [email protected]:vaughan189/react-reserve.git
```
**Client App**
```
cd client
npm install
```**Server App**
```
cd server
npm install
```**Build docker-compose and run**
```
docker-compose build --no-cache
docker-compose up -d
```This will start the client app http://localhost:3000 and the server http://localhost:4000.
**CREATE DATABASE**
```
cd server
npm run db:create
```**RUN ALL MIGRATIONS**
```
cd server
npm run db:migrate
```**RUN ALL SEEDERS**
```
cd server
npm run db:seed
```