screencast.mp4
- Create your PostgreSQL instance however you want, and run
CREATE DATABASE sst;- Change the connection string in
api/Sst.Api/appsettings.jsonappropriately - Change directories to
api/Sst.Databaseand 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
clientand install dependencies
npm i- Run the development server
npm run dev
