Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export MICROSOFT_CLIENT_ID=""
export MICROSOFT_CLIENT_SECRET=""
export MICROSOFT_TENANT_ID=""
export MICROSOFT_TEST_USER_ID=""
export MICROSOFT_OTHER_TEST_USER_ID=""
export MICROSOFT_TEST_GROUP_ID=""
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,5 @@ msg-*.tar
.env

/priv/plts/

/.claude/*.local.*
6 changes: 6 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,3 +83,9 @@ The library implements OAuth2 client credentials flow:
1. `Msg.Client.new/1` accepts credentials (`client_id`, `client_secret`, `tenant_id`)
2. `fetch_token!/1` exchanges credentials for access token via Azure AD
3. Returns configured Req client with Authorization header for Graph API calls

### Git hygine

1. Create concise commits.
2. In the description focus on the why where possible (not the what)
3. **Always** use present tense verbs ("Adds" instead of "Add", etc)
Loading