A proof of concept app for using the Trello API and cards as a backend for tracking items for one-on-ones with my mentoring group.
Right now, it is intended to pull OAuth configuration from the appsettings.json for authentication. The settings reference is named Auth0 since that's my usual choice for doing OIDC.
Configure Trello access by setting the AppKey, AppId, and BoardId so the system knows where to pull the data from. See TrelloConfiguration.cs
for information on where to get those values from.
It relies on having a tag One-on-One
on cards that should be exposed in the application.
Additionally, your mentees will be tied to cards by adding a text custom field to the card with their username/authenticated email.
Not really intended to public consumption given the rough edges on configuration mentioned above. Also, performance isn't terribly great using the Manatee Trello wrapper lib.