From f865bfc9dbf0b27f776411c20c1017c67d4828f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20Str=C3=B6mberg?= Date: Wed, 16 Oct 2019 00:09:16 +0200 Subject: [PATCH] Add README info about how to start the server MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes #86 Not at all sure you want this info here. :smile: If the info is appropriate, then maybe also inform about which port it starts listening to. (Something I think should be showing in the ”Server running” message.) --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 3cda914..e42e76b 100644 --- a/README.md +++ b/README.md @@ -60,6 +60,18 @@ crate](https://docs.rs/log). Logging at a specific level can be enabled by setting the `RUST_LOG` environment variable to `RUST_LOG=declarative_dataflow=`. +## Run + +To start the server. From the root of the project: + +```sh +$ cd server +$ cargo run +``` + +The first time you do this, the server will be compiled and then started. +Subsequent runs will will start the server instantly. + ## Documentation Crate documentation available on