Bit of explanation.

master
Tom 2019-07-21 19:15:37 +01:00
rodzic 3bd300635a
commit af418d1787
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -29,7 +29,8 @@ namespace ft8spotter
if (!File.Exists(configFile))
{
Console.WriteLine("Cloudlog connection string?");
Console.WriteLine("You need to provide a MySQL connection string, e.g. server=lamp;database=cloudlog;user id=cloudlog;password=abc123;");
Console.WriteLine("in order for ft8spotter to check spots against Cloudlog. Please provide it now...");
string cs = Console.ReadLine();
File.WriteAllText(configFile, $"{configKey}={cs}");
}