screencast.mp4
- Create your PostgreSQL instance however you want, and run
CREATE DATABASE sst;
- Change the connection string in
api/Sst.Api/appsettings.json
appropriately - Change directories to
api/Sst.Database
and apply the migrations
dotnet ef database update --startup-project ../Sst.Api
- 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
- Change directories to
client
and install dependencies
npm i
- Run the development server
npm run dev