modelimport

This commit is contained in:
2025-10-16 10:24:29 +09:00
parent 90fa689bce
commit 984e9188c1
292 changed files with 18076 additions and 1746 deletions

View File

@@ -3,12 +3,14 @@ namespace Simulator.Config
public static class Constants
{
public static string API_DOMAIN = "http://localhost:8888";
public static string MQTT_DOMAIN = "localhost";
public static int MQTT_PORT = 1883;
public static string MQTT_DOMAIN = "220.90.135.42";
public static int MQTT_PORT = 3018;
public static string MQTT_DATA_KEY = "data";
/// <summary>
/// MQTT MessagePack 인코딩 사용 여부
/// </summary>
public static bool MQTT_MESSAGEPACK_ENABLED = false;
public static string HTTP_DOMAIN = "http://220.90.135.42:3037";
public static string ACESS_TOKEN = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6MSwidXNlcmlkIjoic3lzdGVtIiwibmFtZSI6IuyLnOyKpO2FnOq0gOumrOyekCIsImF1dGgiOiJzeXN0ZW0iLCJjb21wYW55SWQiOm51bGwsImlhdCI6MTczNTYwOTgyOCwiZXhwIjoxNzcxNjA5ODI4fQ.ApXLL_RsWWaa2KwRKrg1z8iT9MNYdZFqN-6Mn1Lvq8Q";
}
}