Change default port:

Client = 3000
API = 3001
Gateway = 3002
This commit is contained in:
Flam3rboy 2021-05-02 17:11:18 +02:00
parent e9cb5f8a10
commit 4c8379c874
3 changed files with 3 additions and 3 deletions

View File

@ -77,7 +77,7 @@ router.post(
if (email) {
// replace all dots and chars after +, if its a gmail.com email
if (!adjusted_email) throw FieldErrors({ email: { code: "INVALID_EMAIL", message: "Invalid Email format" } });
if (!adjusted_email) throw FieldErrors({ email: { code: "INVALID_EMAIL", message: req.t("auth:register.INVALID_EMAIL") } });
// check if there is already an account with this email
const exists = await UserModel.findOne({ email: adjusted_email }).exec();

View File

@ -3,7 +3,7 @@ import { Router } from "express";
const router = Router();
router.get("/", (req, res) => {
res.send({ url: "ws://localhost:2000" });
res.send({ url: "ws://localhost:3002" });
});
export default router;

View File

@ -23,7 +23,7 @@ if (cluster.isMaster && process.env.production == "true") {
});
} else {
var port = Number(process.env.PORT);
if (isNaN(port)) port = 1000;
if (isNaN(port)) port = 3001;
const server = new FosscordServer({ port });
server.start().catch(console.error);