Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```