- Initial work on Dockerfile

- Updated README.md with more information
- Added some todos
This commit is contained in:
Kwoth
2021-07-18 09:16:42 +02:00
parent 971b5078b7
commit b84f40def6
7 changed files with 51 additions and 12 deletions

View File

@@ -11,7 +11,7 @@ if (args.Length > 0)
{
if (!int.TryParse(args[0], out shardId))
{
Console.Error.WriteLine("Invalid first argument (shard id)");
Console.Error.WriteLine("Invalid first argument (shard id): {0}", args[0]);
return;
}
@@ -19,7 +19,7 @@ if (args.Length > 0)
{
if (!int.TryParse(args[1], out var shardCount))
{
Console.Error.WriteLine("Invalid second argument (total shards)");
Console.Error.WriteLine("Invalid second argument (total shards): {0}", args[1]);
return;
}