From 107dfe3901547f7aaaa61442763375fdd578ffaf Mon Sep 17 00:00:00 2001 From: Julien BERNARD Date: Wed, 28 Aug 2019 14:24:35 -0400 Subject: [PATCH] Update documentation --- README.md | 6 ++++-- bin/bootstrap | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 17c95964..4ca84369 100644 --- a/README.md +++ b/README.md @@ -11,11 +11,12 @@ The following modules are reusable Django apps that can be included in other Dja * `lgr_validator` contains the code related the label validation module. * `lgr_tools` contains the code related to all utilities: testing LGR and label sets, LGR comparisons, etc. * `lgr_renderer` contains the code and templates used to generate the static exports of the LGR (HTML only for now). +* `lgr_basic` contains the code related to the simple LGR interface. ## Acknowledgment This toolset was implemented by Viagenie (Audric Schiltknecht, Julien Bernard, -David Drouin and Marc Blanchet) and Wil Tan on an ICANN contract. +David Drouin, Vincent Gonzalez and Marc Blanchet) and Wil Tan on an ICANN contract. ## License @@ -53,7 +54,7 @@ THE POSSIBILITY OF SUCH DAMAGE. ### Pre-requisites * Operating system: Tested on Linux and Mac OS X -* Python 2.7, >= 3.4 +* Python >=3.6 * [LibXML2](http://www.xmlsoft.org/) [MIT License] used by the lxml Python bindings * [ICU4C](http://site.icu-project.org/) [ICU License] * Python modules (listed in `etc/requirements.txt`, or dependencies thereof) @@ -183,6 +184,7 @@ Some notes for developers * `src/lgr_validator/templates` contains validator-specific templates * `src/lgr_tools/templates` contains tool-specific templates * `src/lgr_renderer/templates` contains renderers (HTML output) templates +* `src/lgr_basic/templates` contains simple interface (HTML output) templates #### Static Assets (CSS, Javascript, Images) diff --git a/bin/bootstrap b/bin/bootstrap index 1694ccac..7e6539fa 100755 --- a/bin/bootstrap +++ b/bin/bootstrap @@ -5,7 +5,7 @@ DSITE="src/lgr_web" if [ ! -e venv ]; then echo "==> Creating virtualenv" - virtualenv venv || exit 3 + virtualenv -p python3 venv || exit 3 fi # activate virtualenv