Skip to content

scaleracademy/MasterClass_NodeJS_URL_Shortner

Folders and files

NameName
Last commit message
Last commit date

Latest commit

add096d · May 23, 2021

History

7 Commits
May 23, 2021
May 23, 2021
May 23, 2021
May 23, 2021
May 23, 2021

Repository files navigation

Development

Database Setup

Enter PSQL for Postgres

# Linux 
sudo -u postgres psql 

# Mac 
psql postgres 

Create Database, User and Grant Privilege

Postgres

create database sclrac;
create user sclrac with encrypted password 'sclrac';
grant all privileges on sclrac.* to sclrac;

MySQL

create database sclrac;
create user sclrac identified by 'sclrac';
grant all privileges on sclrac.* to sclrac;

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published