Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -260,3 +260,4 @@ paket-files/
__pycache__/
*.pyc
RTTicTacToe\.WebApi/CQRSGame\.db
/RTTicTacToe.CQRS.Database/*.db
7 changes: 5 additions & 2 deletions Frontend/XF/RTTicTacToe.Forms/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,11 @@ namespace RTTicTacToe.Forms
{
public partial class App : Application
{
public static string AzureBackendUrl = "https://rttictactoe.azurewebsites.net";
//public static string AzureBackendUrl = "https://localhost:44397";
public static string AzureBackendUrl = "https://rttictactoe.azurewebsites.net"; // Dev env
//public static string AzureBackendUrl = "https://localhost:44397"; // IIS with Swagger
//public static string AzureBackendUrl = "http://localhost:5000"; // Console
//public static string AzureBackendUrl = "http://10.0.2.2:5000"; // Android emulator => localhost:5000
//public static string AzureBackendUrl = "http://10.0.2.2:44397"; // Android emulator => localhost:44397

public App()
{
Expand Down
2 changes: 1 addition & 1 deletion RTTicTacToe.WebApi/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"RTTicTacToe.WebApi": {
"commandName": "Project",
"launchBrowser": true,
"launchUrl": "api/values",
"launchUrl": "api/game/about",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
Expand Down