Removed the action socket from the backend -> Moving into another repo
This commit is contained in:
2
app.ts
2
app.ts
@ -2,7 +2,6 @@ import mongoose, {CallbackError} from 'mongoose';
|
||||
import * as api from './server/api';
|
||||
import * as shortener from './server/shortener';
|
||||
import * as contentDelivery from './server/contentDelivery';
|
||||
import * as actionSocket from './server/actionSocket';
|
||||
|
||||
// Load & check environment
|
||||
require('dotenv').config();
|
||||
@ -21,5 +20,4 @@ const start = () => {
|
||||
shortener.startServer(parseInt(process.env.SHORTENER_PORT || ''));
|
||||
if (!process.env.DISABLE_CONTENT_DELIVERY)
|
||||
contentDelivery.startServer(parseInt(process.env.CDN_PORT || ''));
|
||||
actionSocket.startServer(parseInt(process.env.AS_PORT || ''));
|
||||
}
|
Reference in New Issue
Block a user