drift/docs
westito fad654a5aa
PostgreSQL support (#1507)
Support PostgreSQL as a dialect in the main package and with an implementation provided in another package.

Co-authored-by: Simon Binder <oss@simonbinder.eu>
2021-11-11 14:40:41 +01:00
..
lib Add rename hint to all doc pages 2021-10-10 20:07:14 +02:00
pages PostgreSQL support (#1507) 2021-11-11 14:40:41 +01:00
templates Add rename hint to all doc pages 2021-10-10 20:07:14 +02:00
tool Build drift dartdoc for website 2021-10-11 14:50:16 +02:00
web
README.md
build.deploy.yaml Fix deployment builds 2021-08-20 19:20:42 +02:00
build.yaml Start preparing the documentation for the new name 2021-10-09 21:43:30 +02:00
pubspec.yaml Start preparing the documentation for the new name 2021-10-09 21:43:30 +02:00
theme.yaml
website.yaml Prepare moor 4.6.0 release 2021-10-12 14:26:53 +02:00

README.md

Moor documentation

Welcome to the source of moor's documentation, live at moor.simonbinder.eu. We use a static site generator based on build_runner to build the documentation.

Running the website locally

For a fast edit-refresh cycle, run

dart pub global run webdev serve --auto refresh pages:9999 web:8080

You can ignore the pages:9999 (or use any other port), it's just required so that the build system actually generates pages.

Building the website

To build the website, first run

dart run build_runner build --release

To then copy generated contents into a directory, use:

dart run build_runner build --release --output web:out

Where out is the desired output directory. Note that both steps are necessary since the build system doesn't re-generate pages otherwise.