Skip to content

Latest commit

 

History

History
37 lines (30 loc) · 1.04 KB

README.md

File metadata and controls

37 lines (30 loc) · 1.04 KB

Video

screencast.mp4

Screenshots

Transactions Page Cash Flow Page

Setting Up the API

  1. Create your PostgreSQL instance however you want, and run
CREATE DATABASE sst;
  1. Change the connection string in api/Sst.Api/appsettings.json appropriately
  2. Change directories to api/Sst.Database and apply the migrations
dotnet ef database update --startup-project ../Sst.Api
  1. Change directories back to api, supply your Plaid credentials via environment variables, and run the application
export PlaidClientOptions__ClientId="YOUR_CLIENT_ID"
export PlaidClientOptions__Secret="YOUR_CLIENT_SECRET"
dotnet run --project Sst.Api

Setting Up the Client

  1. Change directories to client and install dependencies
npm i
  1. Run the development server
npm run dev