From f830c7dc708849ea47ad6fa19bda7a801e60b228 Mon Sep 17 00:00:00 2001 From: Artyom Kazak Date: Fri, 26 Jul 2019 19:38:15 +0300 Subject: [PATCH] Remove outdated info from README --- README.md | 39 +-------------------------------------- 1 file changed, 1 insertion(+), 38 deletions(-) diff --git a/README.md b/README.md index bb7c277..37c0d1b 100644 --- a/README.md +++ b/README.md @@ -2,43 +2,6 @@ [![BSD3 license](https://img.shields.io/badge/license-BSD3-blue.svg)](https://github.com/aelve/guide/blob/master/LICENSE) -The beta version is running at [guide.aelve.com](https://guide.aelve.com). The most complete section yet is [the one about lenses](https://guide.aelve.com/haskell/lenses-sth6l9jl). +The production version is running at [guide.aelve.com](https://guide.aelve.com). The new frontend is being developed at [staging.guide.aelve.com](https://staging.guide.aelve.com). Installation instructions and the explanation of config variables (in `config.json`) are here: [INSTALL.md](INSTALL.md). - -## Contributing - -If you want to contribute but don't know where to start, grep the source for -`[very-easy]` and `[easy]`, or look at these issues: - - * [“your first pull request”][first pr] – really easy things, with detailed “how to fix it” instructions - * [“your second pull request”][second pr] – less easy things, which assume that you already know where stuff happens in the code - * [“not-fleshed-out idea”][ideas] – discussion issues (“should we have users? what better ways are there to present pros and cons?”) which you can help with even if you don't know Haskell - * [“design”][design] – issues about design (which I'm not good at, and so help is wanted) - -[first pr]: https://github.com/aelve/guide/issues?q=is%3Aissue+is%3Aopen+label%3A%22your+first+pull+request%22 -[second pr]: https://github.com/aelve/guide/issues?q=is%3Aissue+is%3Aopen+label%3A%22your+second+pull+request%22 -[ideas]: https://github.com/aelve/guide/issues?q=is%3Aissue+is%3Aopen+label%3A%22not-fleshed-out+idea%22 -[design]: https://github.com/aelve/guide/issues?q=is%3Aissue+is%3Aopen+label%3A%22design%22 - -## Testing - -You need `chromedriver` and `selenium-server-standalone` installed (those are the package names on Arch Linux). Then you can do - -``` -$ java -jar /usr/share/selenium-server/selenium-server-standalone.jar -``` - -``` -$ make back/test -``` - -## Notes - -When you see something like - -~~~ haskell --- See Note [acid-state] -~~~ - -it means that there's an extensive comment somewhere else in the code, which you can find by grepping for `Note [acid-state]`. This convention was stolen from GHC. If you know some plugin for Emacs that would help with jumping to comments (even if those comments would have to be formatted differently), let me know.