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: 3 additions & 3 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,8 +121,8 @@ The redirect URI is determined dynamically using `window.location.origin`, so it

**Registered SPA Redirect URIs:**

- `http://localhost:3000` - Default local dev
- `http://localhost:3001` - Alternate local dev port
- `http://localhost:3000` - Default Next.js port
- `http://localhost:3101` - Local dev port (configured in package.json)
- `https://getthyme.ai` - Production
- `https://slot1-4.thyme.knowall.ai` - Staging slots

Expand All @@ -133,7 +133,7 @@ To check or update redirect URIs:
az ad app show --id "44c618b5-89c3-4673-92ec-f7afb4e403bf" --query "spa.redirectUris"

# Add a new redirect URI (replace with full list)
az ad app update --id "44c618b5-89c3-4673-92ec-f7afb4e403bf" --spa-redirect-uris "http://localhost:3000" "http://localhost:3001" "https://getthyme.ai"
az ad app update --id "44c618b5-89c3-4673-92ec-f7afb4e403bf" --spa-redirect-uris "http://localhost:3000" "http://localhost:3101" "https://getthyme.ai"
```

## Adding UI Components
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Time tracking application for Microsoft Dynamics 365 Business Central",
"private": true,
"scripts": {
"dev": "next dev -p 3001",
"dev": "next dev -p 3101",
"build": "next build",
"start": "next start",
"lint": "eslint .",
Expand Down