Skip to content

bitnimble/paradb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

be14aac · Mar 3, 2025
Dec 9, 2023
Jan 1, 2024
Mar 3, 2025
Sep 25, 2023
Mar 3, 2025
Mar 3, 2025
Mar 2, 2025
Sep 25, 2023
Dec 5, 2023
Sep 25, 2023
Mar 3, 2025
Mar 3, 2025
Sep 25, 2023
Sep 25, 2023
Dec 18, 2023
Mar 3, 2025
Dec 18, 2023
Dec 18, 2023
Dec 18, 2023
Dec 18, 2023
Sep 25, 2023
Mar 3, 2025
Dec 9, 2023

Repository files navigation

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