platform/packages/static/test/cache_sample.dart
thomashii@dukefirehawk.com 3f30f8a56e Migrated static
2021-05-01 11:53:04 +08:00

27 lines
737 B
Dart

import 'package:angel_framework/angel_framework.dart';
import 'package:angel_framework/http.dart';
import 'package:angel_static/angel_static.dart';
import 'package:file/local.dart';
void main() async {
Angel app;
AngelHttp http;
var testDir = const LocalFileSystem().directory('test');
app = Angel();
http = AngelHttp(app);
app.fallback(
CachingVirtualDirectory(app, const LocalFileSystem(),
source: testDir,
maxAge: 350,
onlyInProduction: false,
indexFileNames: ['index.txt']).handleRequest,
);
app.get('*', (req, res) => 'Fallback');
app.dumpTree(showMatchers: true);
var server = await http.startServer();
print('Open at http://${server.address.host}:${server.port}');
}