Updated port
This commit is contained in:
parent
df191b657b
commit
678942d144
2 changed files with 4 additions and 2 deletions
|
|
@ -6,6 +6,6 @@ const DOMAIN = "crimata.com";
|
|||
const prod = process.env.PROD;
|
||||
|
||||
module.exports = {
|
||||
PLATFORM: prod ? `https://app.${DOMAIN}` : `http://localhost:8760`,
|
||||
API: prod ? `https://${DOMAIN}/api` : `http://localhost:8761`
|
||||
PLATFORM: prod ? `https://app.${DOMAIN}` : `http://localhost:5000`,
|
||||
API: prod ? `https://${DOMAIN}/api` : `http://localhost:5001`
|
||||
}
|
||||
|
|
|
|||
|
|
@ -29,6 +29,8 @@ function handleMessageQueue()
|
|||
// {
|
||||
const update = messageQueue.shift();
|
||||
|
||||
console.log(update);
|
||||
|
||||
if (update)
|
||||
{
|
||||
if (update.person)
|
||||
|
|
|
|||
Loading…
Reference in a new issue