init project setup of the backend with dart and go as well as the frontend with nextjs

This commit is contained in:
2024-11-10 19:18:04 +01:00
parent d237057ac1
commit 338adc3b6f
15 changed files with 654 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import 'package:backend_dart/backend_dart.dart' as backend_dart;
import 'package:backend_dart/infrastructure/config/config.dart';
import 'package:backend_dart/interfaces/http/server.dart';
void main() async {
final config = await Config.load();
final server = Server(config);
print('Starting ActaTempus server on port ${config.port}...');
await server.start();
}