Skip to content

scaleracademy/MasterClass_NodeJS_URL_Shortner

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 

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