Skip to content

Commit

Permalink
update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
dpaikoff committed Mar 5, 2018
1 parent 2735e31 commit 7db7667
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 9 deletions.
39 changes: 31 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
# Project Name
# OpenTable Reviews module clone

> Project description
> This repository contains a React clone of the OpenTable Reviews module. The backend is made with Express and MongoDB.
## Related Projects

- https://github.com/teamName/repo
- https://github.com/teamName/repo
- https://github.com/teamName/repo
- https://github.com/teamName/repo
- https://github.com/TeamMysteryMoose/menus
- https://github.com/TeamMysteryMoose/photos
- https://github.com/TeamMysteryMoose/reservations

## Table of Contents

Expand All @@ -17,7 +16,14 @@

## Usage

> Some usage instructions
> This project requires Node and MongoDB to be installed on your system.
- Make sure mongo is running.
- Seed the database by running the seed.js script from the utilities directory

```
npm run seed
```

## Requirements

Expand All @@ -33,7 +39,24 @@ An `nvmrc` file is included if using [nvm](https://github.com/creationix/nvm).
From within the root directory:

```sh
npm install -g webpack
npm install
```

### Running the Server

From within the root directory:

```sh
npm start
npm run dev-react
npm run compile
```

### Running Tests

From within the root directory:

```sh
npm test
```

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"start": "nodemon server/index.js",
"dev-react": "webpack -d --watch"
"dev-react": "webpack -d --watch",
"compile": "webpack -d",
"seed": "node utilites/seed.js"
},
"jest": {
"setupFiles": [
Expand Down

0 comments on commit 7db7667

Please sign in to comment.