platform/README.md

42 lines
1.3 KiB
Markdown
Raw Normal View History

2016-04-21 21:27:22 +00:00
# angel_static
2016-11-23 09:37:28 +00:00
![version 1.1.0-dev](https://img.shields.io/badge/version-1.1.0--dev-red.svg)
2016-11-23 09:37:28 +00:00
![build status](https://travis-ci.org/angel-dart/static.svg?branch=master)
2016-04-21 21:27:22 +00:00
Static server middleware for Angel.
# Installation
In `pubspec.yaml`:
2016-07-01 20:33:42 +00:00
```yaml
dependencies:
angel_framework: ^1.0.0-dev
2016-11-28 00:51:47 +00:00
angel_static: ^1.1.0-dev+1
2016-07-01 20:33:42 +00:00
```
2016-04-21 21:27:22 +00:00
# Usage
To serve files from a directory, your app needs to have a
`VirtualDirectory` mounted on it.
2016-04-21 21:27:22 +00:00
```dart
import 'dart:io';
import 'package:angel_framework/angel_framework.dart';
import 'package:angel_static/angel_static.dart';
main() async {
final app = new Angel();
2016-11-23 20:14:05 +00:00
await app.configure(new VirtualDirectory(source: new Directory('./public')));
await app.startServer();
2016-04-21 21:27:22 +00:00
}
```
2016-05-02 23:11:25 +00:00
# Options
The `VirtualDirectory` API accepts a few named parameters:
- **source**: A `Directory` containing the files to be served. If left null, then Angel will serve either from `web` (in development) or
2016-06-24 22:23:32 +00:00
`build/web` (in production), depending on your `ANGEL_ENV`.
2016-11-23 17:24:04 +00:00
- **indexFileNames**: A `List<String>` of filenames that should be served as index pages. Default is `['index.html']`.
- **publicPath**: To serve index files, you need to specify the virtual path under which
2016-05-02 23:11:25 +00:00
angel_static is serving your files. If you are not serving static files at the site root,
please include this.
- **debug**: Print verbose debug output.