Skip to content

Latest commit

 

History

History
31 lines (17 loc) · 607 Bytes

README.md

File metadata and controls

31 lines (17 loc) · 607 Bytes

Liberty-backend

Tech Stack

1: Nodejs

2: Express

3: Apollo Server

4: GraphQL

5: PostgreSQL

Steps to Install and Run

Make sure Postgres is installed and running. We will prep our app by creating a single database in Postgres. Don’t forget the semicolons in the the CREATE DATABASE command! in command the command line type

psql CREATE DATABASE gci;

1: Git Clone Backend Server

2: cd into the backend server project directory and run: npm install

3: in terminal run: knex migrate:latest

4: then run: knex seed:run

5: then run npm start