-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How do you run the server? #86
Comments
Hi,
So far, so good!
Cargo differentiates between libraries and binaries. Declarative-dataflow (the main directory) contains only the library. Check out the server/ directory for the server binary. If you run Clippy is a tool that checks our code for common issues / style problems. It's not required for the build to work. Good luck! |
Fixes comnik#86 Not at all sure you want this info here. 😄 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.)
Yes, that worked. Thanks! I proposed an addition about this to the README. Maybe more non-rustians (or whatever you call yourselves 😄) would benefit from that. |
OK. So hadn't created the PR. Now I have proposed the add. 😏 |
Hello,
I can't figure out how to build this in a way that I later can run it. This is my first Rust thing ever. I have installed
rustup
and it got mecargo
. I have runcargo build
and it compiles everything, even if there are some deprecation warnings.Running
cargo run
gives me:I've also tried
cargo build --all-targets
and the tests got my machine really hot, but still the samecargo run
results.I checked the video presentation linked in the README and saw the command
cargo run --bin server -- --
used, but it gives me:I also looked at the Travis file and did the clippy things (w/o having the faintest idea about what I am doing), but same results.
Now I am out of ideas, and love me some clues.
The text was updated successfully, but these errors were encountered: