diff --git a/Controllers/RvrController.cs b/Controllers/RvrController.cs index d6baa3f..bb51a72 100644 --- a/Controllers/RvrController.cs +++ b/Controllers/RvrController.cs @@ -36,9 +36,11 @@ namespace rockfishCore.Controllers public string Contact { get; set; } } - - // private const string LICENSE_SERVER_URL = "https://rockfish.ayanova.com/"; +#if (DEBUG) private const string LICENSE_SERVER_URL = "http://localhost:3001/"; +#else + private const string LICENSE_SERVER_URL = "https://rockfish.ayanova.com/"; +#endif [HttpPost] public async Task Post([FromBody] dtoRequest r)