diff options
author | Joseph Ditton <jditton.atomic@gmail.com> | 2021-12-03 17:00:23 -0700 |
---|---|---|
committer | Joseph Ditton <jditton.atomic@gmail.com> | 2021-12-03 17:00:23 -0700 |
commit | edbbed205031fa21c42e309cbf1161e20135e44b (patch) | |
tree | 7cdf313e58e2c00f87909db1140368d9469dced5 /README.md | |
parent | 95961c5a14d07c79ffae0f0f36b58ca7c3ea521b (diff) | |
download | locchat-edbbed205031fa21c42e309cbf1161e20135e44b.tar.gz locchat-edbbed205031fa21c42e309cbf1161e20135e44b.zip |
readme
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -23,6 +23,8 @@ $ npm install -g yarn ### .env Create a file in the root called `.env` and copy the contents of `.env.example` +In your new `.env` file update the values for each key as you would like + ### Dependencies To install the server dependencies run ```bash @@ -43,11 +45,18 @@ $ createdb neststarterappdevelopment # creates a postgres database Run the migrations ```bash -yarn db:migrate +$ yarn db:migrate ``` Migrations need to be run again everytime a new migration is created +Run the seeds +```bash +$ yarn db:seed +``` + +This should create roles and your admin level user in your database. + ### SSL Create a ssl key and certificate and place them in the root directory |