Skip to content
This repository was archived by the owner on Aug 9, 2023. It is now read-only.

Latest commit

 

History

History
24 lines (20 loc) · 749 Bytes

File metadata and controls

24 lines (20 loc) · 749 Bytes

Bitlink - A payments processor that allows consumers to pay with Bitcoin while vendors receive USD.

Getting Started with Frontend

  1. cd frontend
  2. npm install
  3. npm start

Getting Started with Backend

  1. brew install postgresql
  2. brew services start postgresql
  3. psql postgres
  4. CREATE ROLE dbadmin WITH LOGIN PASSWORD 'bitlink304';
  5. ALTER ROLE dbadmin WITH SUPERUSER;
  6. CREATE DATABASE bitlinkdb;
  7. \q
  8. cd backend
  9. psql dbadmin -h 127.0.0.1 -d bitlinkdb -f schema.sql
  10. npm install
  11. node index.js