ArkhRec is built with Flask
To install and run it locally:
- Clone the repository
- Create a virtual environment inside the repository's root directory
python3 -m venv <NAME_OF_THE_VIRTUAL_ENVIRONMENT>
- Activate the virtual environment
venv\Scripts\activate (in Windows)
venv/bin/activate (in Unix)
- Install the requirements
pip install requirements.txt
- Copy the .pickle files from the repository castilhocp/arkhrec-base-files to the /datafiles folder
- Run flask
python -m flask --app arkhrec run
It should be running on localhost:5000