Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 434 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 434 Bytes

Installation

# Clone and install deps
git clone https://github.com/bitnimble/paradb.git
cd paradb
yarn

# Install and start postgres
sudo apt install postgresql
sudo service postgresql start

# Create postgres user for yourself
sudo -u postgres createuser --interactive --pwprompt

# Edit .env to fill out your username and password!

# Create db and instantiate schema
createdb paradb
db/init.sh

# Start server
yarn dev