diff --git a/CONTRIBUTING_ADVANCED.md b/CONTRIBUTING_ADVANCED.md
index 715e7d995..85e023276 100644
--- a/CONTRIBUTING_ADVANCED.md
+++ b/CONTRIBUTING_ADVANCED.md
@@ -79,8 +79,8 @@ Follow these steps if you want to work on anything involving the database/accoun
2. Setup the database server
-| Local Server | Docker (recommended) |
-| --------------------------------------------------------------------------------------------------------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
+| Local Server | Docker (recommended) |
+| -------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
- Install [MongoDB Community Edition](https://docs.mongodb.com/manual/administration/install-community/)
- Make sure it is running
| - Install [Docker](http://www.docker.io/gettingstarted/#h_installation) on your machine
- Run `docker-compose up` from the `./backend` directory
|
3. (Optional) Install [MongoDB-compass](https://www.mongodb.com/try/download/compass?tck=docs_compass). This tool can be used to see and manipulate your data visually.
@@ -93,9 +93,7 @@ Once you have completed the above steps, you are ready to build and run Monkeyty
1. Run `npm run install:all` in the project root to install all dependencies.
- If you are on Windows, use `npm run install-windows`.
- If neither works, you will have to run `npm install` in root, frontend, and backend directories.
-2. Run `npm run dev` (`npm run dev-fe` if you skipped the mongo section) to start a local dev server on [port 5000](http://localhost:5000). It will watch for changes and rebuild when you edit files in `src/` or `public/` directories. Note that rebuilding doesn't happen instantaneously so be patient for changes to appear. Use Ctrl+C to kill it.
-
-**Mac Users:** If you get 403 Forbidden errors while trying to access the local server, go into System Preferences > Sharing and disable AirPlay Receiver - it also runs on port 5000 and takes priority, causing 403 errors.
+2. Run `npm run dev` (`npm run dev-fe` if you skipped the mongo section) to start a local dev server on [port 3000](http://localhost:3000). It will watch for changes and rebuild when you edit files in `src/` or `public/` directories. Note that rebuilding doesn't happen instantaneously so be patient for changes to appear. Use Ctrl+C to kill it.
## Standards and Guidelines
diff --git a/frontend/src/ts/ui.ts b/frontend/src/ts/ui.ts
index a41c06d8c..2bd9ae63b 100644
--- a/frontend/src/ts/ui.ts
+++ b/frontend/src/ts/ui.ts
@@ -41,7 +41,7 @@ if (window.location.hostname === "localhost") {
);
$(".pageSettings .discordIntegration .buttons a").attr(
"href",
- "https://discord.com/api/oauth2/authorize?client_id=798272335035498557&redirect_uri=http%3A%2F%2Flocalhost%3A5000%2Fverify&response_type=token&scope=identify"
+ "https://discord.com/api/oauth2/authorize?client_id=798272335035498557&redirect_uri=http%3A%2F%2Flocalhost%3A3000%2Fverify&response_type=token&scope=identify"
);
}
diff --git a/frontend/webpack/config.dev.js b/frontend/webpack/config.dev.js
index 12361150f..b947666b9 100644
--- a/frontend/webpack/config.dev.js
+++ b/frontend/webpack/config.dev.js
@@ -7,7 +7,7 @@ const DEV_CONFIG = {
devtool: "inline-source-map",
devServer: {
compress: true,
- port: 5000,
+ port: 3000,
open: true,
historyApiFallback: true,
client: {