fix readme typo

This commit is contained in:
Joseph Ditton 2022-03-01 10:00:59 -07:00
parent 8276cec486
commit fc4a758426

View File

@ -80,7 +80,7 @@ This will create the database, run the migrations, and run the seeds for you.
### Migrations ### Migrations
Any time you want make changes to your database schema you will need to generate a migration file Any time you want make changes to your database schema you will need to generate a migration file
```bash ```bash
yarn db:migration:generate AddContextToRoles # replace this name with a name that describes your migration yarn db:migration:create AddContextToRoles # replace this name with a name that describes your migration
``` ```
Open that migration file and make the changes. Then, when you are ready Open that migration file and make the changes. Then, when you are ready
```bash ```bash
@ -125,20 +125,7 @@ To start the client run
```bash ```bash
$ yarn client:watch $ yarn client:watch
``` ```
YOU NEED TO RUN EACH OF THESE COMMANDS IN A SEPARATE TERMINAL TAB / WINDOW
## Test
**WORK IN PROGRESS**
```bash
# unit tests
$ yarn test
# e2e tests
$ yarn test:e2e
# test coverage
$ yarn test:cov
```
## Setup Heroku ## Setup Heroku
We will deploy all our projects to Heroku. Heroku is a cloud platform that is easy and free to use. You will only need to run these step once for each computer you are working on this semester. We will deploy all our projects to Heroku. Heroku is a cloud platform that is easy and free to use. You will only need to run these step once for each computer you are working on this semester.