fix: Change local dev port from 3001 to 3101#148
Merged
Conversation
Closes #144 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the project’s local development setup to standardize the Next.js dev server port on 3101, and aligns Azure AD redirect URI documentation accordingly (per Issue #144).
Changes:
- Updated
bun run devto start Next.js on port 3101. - Updated
CLAUDE.mdto document the new local dev redirect URI and the Azure CLI update command.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| package.json | Changes the dev script to run next dev on port 3101. |
| CLAUDE.md | Updates documented redirect URIs and the Azure AD CLI command to use localhost:3101. |
Comments suppressed due to low confidence (2)
CLAUDE.md:136
- The sample
az ad app update --spa-redirect-uris ...command overwrites the entire redirect URI list, but this example omits the staging slot URI listed above. Someone copy/pasting it could accidentally remove existing redirect URIs (e.g., staging slots) from the app registration; update the example to include the full list or explicitly call out all URIs that must be preserved.
az ad app update --id "44c618b5-89c3-4673-92ec-f7afb4e403bf" --spa-redirect-uris "http://localhost:3000" "http://localhost:3101" "https://getthyme.ai"
CLAUDE.md:126
- There are still repo docs referencing
http://localhost:3001(e.g.,.claude/skills/capture-app-screenshots.md). With the dev port now set to 3101, those instructions will be incorrect; please update any remaining references so local setup/docs stay consistent.
- `http://localhost:3000` - Default Next.js port
- `http://localhost:3101` - Local dev port (configured in package.json)
- `https://getthyme.ai` - Production
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Contributor
Author
|
Tested, reviewed by Copilot, @BenGWeeks check and merge please |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
3001to3101inpackage.jsonCLAUDE.mdto reflect the new port in redirect URI documentationlocalhost:3001withlocalhost:3101Closes #144
Test plan
🤖 Generated with Claude Code