You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
2.2 KiB
2.2 KiB
Steps to Create and Deploy:
set up local
in your browser
- fork this repo
in your terminal
- clone your fork of this repo onto your local computer somewhere outside the class repo
cdinto the local repo- don't forget to run
npm install
local postgres
- open your postgres app and start the db server
if you deleted your old "contacts" database from class
-
in your terminal, if running
psqlgives you "command not found", runln -s /Applications/Postgres.app/Contents/Versions/latest/bin/psql /usr/local/bin/psql -
in the postgres app, double click one of the existing databases to enter
psql -
once inside
psql, run:CREATE DATABASE contacts;\c contactsCREATE TABLE people (id SERIAL, name VARCHAR(16), age INT);INSERT INTO people ( name, age ) VALUES ( 'Matt', 38 );INSERT INTO people ( name, age ) VALUES ( 'Sally', 54 );INSERT INTO people ( name, age ) VALUES ( 'Zanthar', 4892 );
in your terminal
- run
nodemon
in your browser
go to http://localhost:3000/ to view local app (note this uses your local database)
confirm all CRUD functionality
set up heroku
in your terminal
- run
heroku create(take note of the app name for later)
in your browser
- go to heroku.com in your browser and sign in
- find this newly created heroku app in your list of available apps and click on it
- go to resources to use the
Add-onssearch bar - search for postgres and choose Heroku Postgres
- choose "Hobby Dev - Free"
- click provision
in your terminal
- run
heroku pg:psql - once inside heroku's psql, run
CREATE TABLE people (id SERIAL, name VARCHAR(16), age INT);INSERT INTO people ( name, age ) VALUES ( 'Matt', 38 );INSERT INTO people ( name, age ) VALUES ( 'Sally', 54 );INSERT INTO people ( name, age ) VALUES ( 'Zanthar', 4892 );
- exit heroku psql with
\q - run
git push heroku master - run
heroku opento see app (note this uses your heroku postgres database, which will have different data than your local db)
Rerunning local after initial set up
Open Postgres app and start the db
In terminal:
- Go to repo root dir
- Run
nodemon
In Browser go to http://localhost:3000/