Skip to content
This repository has been archived by the owner on Jan 13, 2021. It is now read-only.

upleveled/express-postgres-api-feb-2020

Repository files navigation

Express PostgreSQL API

Setup

Copy the .env.example file to .env and add the database connection information.

You'll also need PostgreSQL for this.

PostgreSQL Installation instructions

Follow the instructions from the PostgreSQL step in UpLeveled's System Setup Instructions.

Run the following queries inside of psql to set up the database and the user:

CREATE DATABASE express;
CREATE USER express WITH ENCRYPTED PASSWORD 'express';
GRANT ALL PRIVILEGES ON DATABASE express TO express;
SET ROLE express;
\connect express;

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published