Skip to content

Commit

Permalink
add .nvmrc file (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
jd2rogers2 authored Sep 18, 2021
1 parent 005bb65 commit 00b042c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
14.16.0
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,11 @@ Primary tech stack: PostgreSQL, Nest, and React
## Startup
1. With docker and docker-compose installed, ensure the specified `DATABASE_PORT` is free and run `npm run start:dev:db` from `/server` directory to start up PostgreSQL docker container.
1. run `nvm use` to ensure you are using the proper node version
2. With docker and docker-compose installed, ensure the specified `DATABASE_PORT` is free and run `npm run start:dev:db` from `/server` directory to start up PostgreSQL docker container.
* Terminal should show a successful start of the docker container, but this can be confirmed by running `docker ps` in terminal to view all running containers. One should match the name of `container_name` from `docker-compose.yml` file
2. To start Nest backend in watch mode: From `/server` directory, run `npm run start:dev`.
3. To start up React frontend: From `/client` directory, run `npm start`. A browser page should start up automatically. If not, visit `localhost:3000`.
3. To start Nest backend in watch mode: From `/server` directory, run `npm run start:dev`.
4. To start up React frontend: From `/client` directory, run `npm start`. A browser page should start up automatically. If not, visit `localhost:3000`.
## Test
Most tests are still in development.
Expand Down

0 comments on commit 00b042c

Please sign in to comment.