diff options
author | Joseph Ditton <jditton.atomic@gmail.com> | 2022-03-01 10:00:59 -0700 |
---|---|---|
committer | Joseph Ditton <jditton.atomic@gmail.com> | 2022-03-01 10:00:59 -0700 |
commit | fc4a758426cae6e28e0cbd637cb87d01f72c4ab4 (patch) | |
tree | e767e6b61c79b38a1303d750c9ad688895fb36f0 | |
parent | 8276cec4864502425779b86ffee8859419d84559 (diff) | |
download | locchat-fc4a758426cae6e28e0cbd637cb87d01f72c4ab4.tar.gz locchat-fc4a758426cae6e28e0cbd637cb87d01f72c4ab4.zip |
fix readme typo
-rw-r--r-- | README.md | 17 |
1 files changed, 2 insertions, 15 deletions
@@ -80,7 +80,7 @@ This will create the database, run the migrations, and run the seeds for you. ### Migrations Any time you want make changes to your database schema you will need to generate a migration file ```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 ```bash @@ -125,20 +125,7 @@ To start the client run ```bash $ yarn client:watch ``` - -## Test -**WORK IN PROGRESS** - -```bash -# unit tests -$ yarn test - -# e2e tests -$ yarn test:e2e - -# test coverage -$ yarn test:cov -``` +YOU NEED TO RUN EACH OF THESE COMMANDS IN A SEPARATE TERMINAL TAB / WINDOW ## 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. |