From 6586166282162d7750eb06192bd00115335b3e5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arturo=20Filast=C3=B2?= Date: Mon, 12 Feb 2018 18:33:13 +0200 Subject: [PATCH] Add basic readme --- Readme.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Readme.md diff --git a/Readme.md b/Readme.md new file mode 100644 index 0000000..1ba4b52 --- /dev/null +++ b/Readme.md @@ -0,0 +1,21 @@ +# gooni + +An attempt at writing OONI Probe in golang. + +This is heavy work in progress. + +## Development setup + +This project uses `dep` with the `vendor/` dir in `.gitignore`. + +Once you have `dep` installed, run: + +``` +dep ensure +``` + +You should then be able to build a ooni binary by running: + +``` +make build +```