Adds a docker image and build task for said image

This commit is contained in:
zontreck 2025-03-15 00:18:27 -07:00
parent 37ba232a54
commit d87c0192ac
6 changed files with 110 additions and 2 deletions

9
cli/server.dart Normal file
View file

@ -0,0 +1,9 @@
Future<int> main(List<String> args) async {
print("Starting BugVault Server...");
// Check for settings.dat, which should contain all basic information.
// Then check if any data exists. If not, create data hierarchy
print("Thank you for choosing BugVault! - Shutting down...");
return 0;
}