Bitlink - A payments processor that allows consumers to pay with Bitcoin while vendors receive USD.
cd frontend
npm install
npm start
brew install postgresql
brew services start postgresql
psql postgres
CREATE ROLE dbadmin WITH LOGIN PASSWORD 'bitlink304';
ALTER ROLE dbadmin WITH SUPERUSER;
CREATE DATABASE bitlinkdb;
\q
cd backend
psql dbadmin -h 127.0.0.1 -d bitlinkdb -f schema.sql
npm install
node index.js