mirror of https://github.com/flutter/samples.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.2 KiB
34 lines
1.2 KiB
import 'dart:io';
|
|
|
|
import 'package:compass_server/middleware/auth.dart';
|
|
import 'package:compass_server/routes/booking.dart';
|
|
import 'package:compass_server/routes/continent.dart';
|
|
import 'package:compass_server/routes/destination.dart';
|
|
import 'package:compass_server/routes/login.dart';
|
|
import 'package:shelf/shelf.dart';
|
|
import 'package:shelf/shelf_io.dart';
|
|
import 'package:shelf_router/shelf_router.dart';
|
|
|
|
// Configure routes.
|
|
final _router = Router()
|
|
..get('/continent', continentHandler)
|
|
..mount('/destination', DestinationApi().router.call)
|
|
..mount('/booking', BookingApi().router.call)
|
|
..mount('/login', LoginApi().router.call);
|
|
|
|
void main(List<String> args) async {
|
|
// Use any available host or container IP (usually `0.0.0.0`).
|
|
final ip = InternetAddress.anyIPv4;
|
|
|
|
// Configure a pipeline that logs requests.
|
|
final handler = Pipeline()
|
|
.addMiddleware(logRequests())
|
|
.addMiddleware(authRequests())
|
|
.addHandler(_router.call);
|
|
|
|
// For running in containers, we respect the PORT environment variable.
|
|
final port = int.parse(Platform.environment['PORT'] ?? '8080');
|
|
final server = await serve(handler, ip, port);
|
|
print('Server listening on port ${server.port}');
|
|
}
|