LocChat/README.md

191 lines
6.5 KiB
Markdown
Raw Permalink Normal View History

2021-12-03 20:31:24 -05:00
# USU CS4610 Nest Starter App
2021-10-29 20:57:24 -04:00
## Description
2021-11-16 21:14:46 -05:00
A starter app with Postgres, NestJS, and React
2021-12-03 20:31:24 -05:00
## Cloning the project
2022-01-10 11:23:17 -05:00
IMPORTANT Windows users should setup WSL first before cloning. See [WSL_SETUP.md](/WSL_SETUP.md)
2021-12-03 20:31:24 -05:00
This app is designed to used as a starting point for another application so you will want to clone the project into a folder that matches your app. Run
```bash
git clone git@github.com:dittonjs/NestStarterApp.git <YourAppName>
2021-12-03 20:31:24 -05:00
```
2021-12-04 19:13:43 -05:00
a
2021-12-03 20:31:24 -05:00
Replace your app name with the name of your app, for example
```bash
git clone git@github.com:dittonjs/NestStarterApp.git SpyChat
2021-12-03 20:31:24 -05:00
```
Next, go create a remote repository in github (or gitlab, or bitbucket, it doesn't matter) for your new application.
Finally, run
```bash
bash ./bin/setup_new_project.sh
2021-12-03 20:31:24 -05:00
```
2021-12-03 20:48:52 -05:00
and follow the prompts. This script will link the repo to your new repo while maintaining a reference to the starter app repo. This way, if we make changes to the starter app repo, you can still get those changes.
2021-12-04 19:04:11 -05:00
## Pulling Updates from Starter App
2021-12-03 20:48:52 -05:00
To retrieve changes from the starter app run
```bash
git pull upstream main
2021-12-03 20:48:52 -05:00
```
2021-11-16 21:14:46 -05:00
## Prerequisites
2022-01-03 20:51:10 -05:00
### VSCode
I know there are bunch of editors but trust me, VS Code will make your life easier, mostly becuase it is what I use and if you have issues I can help you. If you use something else IT WILL BE YOUR RESPONSIBILITY TO MAKE SURE IT IS CONFIGURED PROPERLY.
Look [here](/VSCODE.md) for information about which extensions and settings we will use.
### WSL
If you are on Windows you will need to install WSL2 you must be on windows 10 or higher.
You can find the instructions on how to set this up [here.](/WSL_SETUP.md)
2021-11-16 21:14:46 -05:00
### asdf-vm
2022-01-03 20:51:10 -05:00
Tool versions are managed using `asdf-vm`. You will need to have `asdf-vm` installed first. You can install it by following the instructions [here.](/ASDFVM_SETUP.md)
2021-10-29 20:57:24 -04:00
2021-11-03 21:25:40 -04:00
## Setup
2022-01-03 20:51:10 -05:00
Make sure your have navigated to the project directory in your terminal.
2021-11-16 21:14:46 -05:00
### Tool versions
Install the tool versions by running
```bash
asdf install
2021-11-16 21:14:46 -05:00
```
### Install yarn
2021-12-03 20:31:24 -05:00
We will use `yarn` instead of `npm` for package managment. To install yarn run
2021-11-16 21:14:46 -05:00
```bash
npm install -g yarn
2021-11-16 21:14:46 -05:00
```
### .env
2021-12-03 20:31:24 -05:00
Create a file in the root called `.env` and copy the contents of `.env.example`.
Make sure you create a new file instead of renaming the `.env.example` file.
2021-11-03 21:25:40 -04:00
2021-12-03 19:00:23 -05:00
In your new `.env` file update the values for each key as you would like
2021-11-16 21:14:46 -05:00
### Dependencies
2021-12-04 22:33:43 -05:00
To install the both server and client dependencies run
2021-11-16 21:14:46 -05:00
```bash
yarn # this is same thing as `yarn install`
2021-11-16 21:14:46 -05:00
```
2021-12-04 22:33:43 -05:00
Notice that the `client` folder has its own `package.json` file and its own `node_modules`. If you add dependencies for the client make sure to `cd` into the `client` directory before doing `yarn add`
2021-11-30 17:40:07 -05:00
2021-11-16 21:14:46 -05:00
### Database
2021-12-03 20:48:52 -05:00
This application uses Postgres. To setup the database run
2021-11-03 21:25:40 -04:00
```bash
yarn db:setup
2021-11-03 21:25:40 -04:00
```
2021-12-03 20:48:52 -05:00
This will create the database, run the migrations, and run the seeds for you.
2021-10-29 20:57:24 -04:00
2021-12-03 20:31:24 -05:00
### Migrations
Any time you want make changes to your database schema you will need to generate a migration file
```bash
2022-03-01 12:00:59 -05:00
yarn db:migration:create AddContextToRoles # replace this name with a name that describes your migration
2021-12-03 20:31:24 -05:00
```
Open that migration file and make the changes. Then, when you are ready
2021-11-16 21:14:46 -05:00
```bash
yarn db:migrate
2021-11-16 21:14:46 -05:00
```
2021-12-03 20:31:24 -05:00
will run any pending migrations.
If a team member adds a migrations you will need to run the migrate command to make the changes to your local database as well.
2021-11-16 21:14:46 -05:00
2021-12-03 20:31:24 -05:00
### Seeds
2021-12-03 20:48:52 -05:00
Seeds allow you to pre-populate your database with data. By default this application prepopulates the `Roles` and the Admin `User` into your database.
2021-11-16 21:14:46 -05:00
2021-12-03 20:31:24 -05:00
If you make changes to the seeds file at `server/database/seeds.ts` the make sure that, in the event seeds are run multiple times, you don't end up with duplicate data.
To run the seeds
2021-12-03 19:00:23 -05:00
```bash
yarn db:seed
2021-12-03 19:00:23 -05:00
```
2021-11-16 21:14:46 -05:00
### SSL
2021-12-03 20:31:24 -05:00
**Only do this step if you intend on developing your app in an environment where you need SSL (like canvas or other embedded platforms).**
In your `.env` set
```
USE_SSL=true
```
2021-11-30 17:40:07 -05:00
Create a ssl key and certificate and place them in the root directory
2021-10-29 20:57:24 -04:00
```bash
openssl req -x509 -newkey rsa:4096 -keyout private-key.pem -out public-cert.pem -sha256 -nodes
2021-10-29 20:57:24 -04:00
```
2021-11-30 17:40:07 -05:00
Enter `US` for the country code. Where this key will only be used for development you can leave all of the rest of information blank.
2021-10-29 20:57:24 -04:00
## Running the app
2021-11-30 17:40:07 -05:00
To start the server run
2021-10-29 20:57:24 -04:00
```bash
yarn start:dev
2021-11-30 17:40:07 -05:00
```
2021-10-29 20:57:24 -04:00
2021-11-30 17:40:07 -05:00
To start the client run
```bash
yarn client:watch
2021-10-29 20:57:24 -04:00
```
2022-03-01 12:00:59 -05:00
YOU NEED TO RUN EACH OF THESE COMMANDS IN A SEPARATE TERMINAL TAB / WINDOW
2021-12-04 22:27:04 -05:00
## 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.
2021-12-04 22:27:04 -05:00
### Create an account
On heroku.com create an account.
### Install Heroku CLI
If you don't have the heroku CLI installed you can install it by running. You should only need to do this once on each computer you are working on.
```bash
curl https://cli-assets.heroku.com/install.sh | sh
2021-12-04 22:27:04 -05:00
```
### Login to CLI
To log into the CLI run
```bash
heroku login
2021-12-04 22:27:04 -05:00
```
and follow the prompts. After a while, you maybe be prompted to login again which is fine.
## Deploy Setup
2022-01-10 17:22:31 -05:00
Follow these steps to setup your app for deploy, you should only have to do this once per application
2021-12-04 22:27:04 -05:00
### Create app in heroku
1. Go to your heroku dashboard and create a new application.
2. Once your app has been created you will need to enable the Postgres addon. Select the `Resources` tab and search for `Heroku Postgres` addon.
3. On the screen that pops up make sure `Hobby Dev` is selected (that is the free option) and click the submit order button.
4. Click on the `Settings` tab, select the `Reveal Config Vars` button, and verify you have an entry for `DATABASE_URL`.
### Setup config vars
You will need to add entries in Heroku for each of the production config vars in the `.env` file.
To do this go the `Settings` tab in your app on heroku and click `Reveal Config Vars`. Fill out the key and value for each entry.
**DO NOT MANUALLY SET THE `PORT`, `USE_SSL`, `NODE_ENV`, OR `DATABASE_URL` VARS.** These will be managed for you by Heroku
You should generate new values for the `ENCRYPTION_KEY`, `REFRESH_ENCRYPTION_KEY`, and `ADMIN_PASSWORD` vars. I recommend using a real email address for your `ADMIN_EMAIL`.
All vars should be named the exact same as they are in the `.env` file.
### Link to Heroku
You publish to Heroku using `git`. Run the following command to add the heroku remote
```bash
heroku git:remote -a <your app name>
```
If your app name in Heroku was `spy-chat` then you would run
```bash
heroku git:remote -a spy-chat
```
## Deploying
We finally made it! To deploy your app to Heroku run
```bash
git push heroku main
```
and thats it!