A package database and repository of OpenComputers & ComputerCraft programs.
Just open this link in your favorite browser: https://api.fomalhaut.me/
- Install python>=3.3, MongoDB 3.2
- Clone Hel git repository to local directory
$ export VENV=<full path to directory containing hel project>/env
$ pip3 install virtualenv
$ python3 -m virtualenv $VENV
$ cd <directory containing this file>
$ $VENV/bin/pip install -e .
$ $VENV/bin/pserve development.ini
This will set up and run a local copy of hel. http://127.0.0.1:6543/
To be able to run tests you need to install additional packages with the following command:
$ $VENV/bin/pip install -e '.[testing]'
And there's the command to actually run tests:
$ $VENV/bin/py.test
By default, it also performs "PEP8 sanity checks", and stops after fifth failture.