This repo hosts the frontend for transaction review website. Transcripts are generated from TSTBTC, then sent to the transcrition review backend. You'll be able to see the results here.
In order to edit a transcript, you'll need to give auth permissions to access fork and repo and open a PR on your behalf (we did our best to minimize the requirements).
- Clone the repo
- Install dependencies
- Update environment variables
- Run the app
- Clone the repo
git clone
- Install dependencies
yarn
# or
npm install
- Update environment variables
cp .env.local.example .env.local
As mentioned above you'll need to need GITHUB_ID and GITHUB_SECRET if you aren't pointing this front end towards a hosted backend.
- Run the app
yarn dev
# or
npm run dev
If you are interested in running the backend app, checkout the build instructions there.