X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Futils%2FConstants.ts;h=2e43d37697d2e47c603d3b5f312f9d54bef12631;hb=720c5e723bf47e74028b43abf63328820d033357;hp=c10a320bc8d71ed23775e94be0c88b936e1b610e;hpb=6d9abcc2b7b384773348c64bf0f7fc4dc5aad061;p=e-mobility-charging-stations-simulator.git diff --git a/src/utils/Constants.ts b/src/utils/Constants.ts index c10a320b..2e43d376 100644 --- a/src/utils/Constants.ts +++ b/src/utils/Constants.ts @@ -45,8 +45,13 @@ export default class Constants { static readonly DEFAULT_HEARTBEAT_INTERVAL = 60000; // Ms - static readonly SUPPORTED_MEASURANDS = Object.freeze([MeterValueMeasurand.STATE_OF_CHARGE, MeterValueMeasurand.VOLTAGE, - MeterValueMeasurand.POWER_ACTIVE_IMPORT, MeterValueMeasurand.CURRENT_IMPORT, MeterValueMeasurand.ENERGY_ACTIVE_IMPORT_REGISTER]); + static readonly SUPPORTED_MEASURANDS = Object.freeze([ + MeterValueMeasurand.STATE_OF_CHARGE, + MeterValueMeasurand.VOLTAGE, + MeterValueMeasurand.POWER_ACTIVE_IMPORT, + MeterValueMeasurand.CURRENT_IMPORT, + MeterValueMeasurand.ENERGY_ACTIVE_IMPORT_REGISTER + ]); static readonly DEFAULT_FLUCTUATION_PERCENT = 5; @@ -54,4 +59,7 @@ export default class Constants { static readonly DEFAULT_PERFORMANCE_RECORDS_FILENAME = 'performanceRecords.json'; static readonly DEFAULT_PERFORMANCE_RECORDS_DB_NAME = 'charging-stations-simulator'; static readonly PERFORMANCE_RECORDS_TABLE = 'performance_records'; + + static readonly DEFAULT_UI_WEBSOCKET_SERVER_HOST = 'localhost'; + static readonly DEFAULT_UI_WEBSOCKET_SERVER_PORT = 8080; }