-
-
Notifications
You must be signed in to change notification settings - Fork 133
chore: update dev ports to avoid conflicts with fCC Proper #566
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
For these port changes to be accepted, they should also be reflected in documentation and environment files, such as .env.sample, .codespace-instructions.sh, and .gitpod.yml.
d68ca85 to
6595fc0
Compare
|
I have added instructions for Auth0 in the readme with the corrected ports as well as updates for the environment files .env.sample and .codespace-instructions.sh. Per request, gitpod instructions and notation is being removed in another PR and thus .gitpod.yml has not been modified here see PR #573. |
|
Thanks @CarlyAThomas for factoring in my feedback form our last conversation to add documentation for setting up Classroom App on the same local machine as FCC Proper. |
- Change develop server port from 3000 to 3001 - Change mock-fcc-data port from 3001 to 3002 - This allows classroom to run alongside fCC Proper (ports 3000/8000)
- Update README.md with port information in setup steps - Update .env.sample with new NEXTAUTH_URL and mock data URL - Update codespace-instructions.sh with new port URLs - Update .devcontainer/devcontainer.json forwardPorts array These changes ensure documentation reflects the new port configuration that avoids conflicts with freeCodeCamp's main platform (ports 3000/8000).
6595fc0 to
0c00699
Compare
…amp#566) * chore: update dev ports to avoid conflicts with fCC Proper - Change develop server port from 3000 to 3001 - Change mock-fcc-data port from 3001 to 3002 - This allows classroom to run alongside fCC Proper (ports 3000/8000) * docs: update port references from 3000/3001 to 3001/3002 - Update README.md with port information in setup steps - Update .env.sample with new NEXTAUTH_URL and mock data URL cd /home/arora/classroom && git status -sb cd /home/arora/classroom && GIT_EDITOR=true git rebase --continue - Update codespace-instructions.sh with new port URLs - Update .devcontainer/devcontainer.json forwardPorts array These changes ensure documentation reflects the new port configuration that avoids conflicts with freeCodeCamp's main platform (ports 3000/8000).
Checklist:
Update index.md)Reason
This allows classroom to run alongside freeCodeCamp's main platform for integration testing. fCC Proper uses ports 3000 (backend) and 8000 (frontend), which conflicts with classroom's default port 3000.
Testing
✅ Verified npm run develop starts on port 3001
✅ Verified npm run mock-fcc-data starts on port 3002
✅ Confirmed no port conflicts when running both services simultaneously