fix: missing entry file
This commit is contained in:
parent
31ab45c9ab
commit
36b6aca431
1
.gitignore
vendored
1
.gitignore
vendored
@ -25,6 +25,5 @@ Thumbs.db
|
|||||||
**/temp/
|
**/temp/
|
||||||
|
|
||||||
# Go spezifische Ignorierungen
|
# Go spezifische Ignorierungen
|
||||||
**/bin/
|
|
||||||
**/pkg/
|
**/pkg/
|
||||||
**/vendor/
|
**/vendor/
|
10
backend-dart/bin/backend_dart.dart
Normal file
10
backend-dart/bin/backend_dart.dart
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
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();
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user