Skip to content

Commit

Permalink
Merge pull request #665 from mcneel/pedro/changeDefaultWebAddress
Browse files Browse the repository at this point in the history
Changed default WebAddress to localhost
  • Loading branch information
andyopayne authored May 31, 2024
2 parents 6dfe135 + 69d9d69 commit 99dacbe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/compute.geometry/RhinoCompute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace Rhino.Compute
{
public static class ComputeServer
{
public static string WebAddress { get; set; } = "https://compute.rhino3d.com";
public static string WebAddress { get; set; } = "http://localhost:6500";
public static string AuthToken { get; set; }
public static string ApiKey { get; set; }
public static string Version => "0.12.0";
Expand Down
2 changes: 1 addition & 1 deletion tools/computegen/RhinoComputeHeader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace Rhino.Compute
{
public static class ComputeServer
{
public static string WebAddress { get; set; } = "https://compute.rhino3d.com";
public static string WebAddress { get; set; } = "http://localhost:6500";
public static string AuthToken { get; set; }
public static string ApiKey { get; set; }
public static string Version => "{{VERSION}}";
Expand Down

0 comments on commit 99dacbe

Please sign in to comment.