The RAVEN editor has two parts: a flask server (raven-server) and a front end (either raven-app or raven-site). The front end sends requests to the flask server specifying the criteria for generating the RAVEN problem. Then the server generates the problem. This guide will instruct you on how to install both.
If you are using raven-app (more involved setup, requiring nodejs, but allows you to edit the front-end)
- Clone the RAVEN app from here:
git clone <url>
- If you don't already have node.js, install it here.
- Run
npm install
in the root directory of the RAVEN app. This installs the necessary react packages.
Clone the RAVEN app from here: git clone <url>
- Clone the RAVEN server from here:
git clone <url>
- If you don't already have python and
pip
, you can install it here. Alternatively, you can install Anaconda which comes with many data science packages preinstalled. - You may need to add
pip
andpython
to the system path if the installer didn't do that automatically. This allows you to runpip
andpython
commands from the command line without specifying the full path (here are example instructions for Windows, a google search will provide instructions for other OSes). - From the root directory of the RAVEN server, run
pip install -r requirements.txt
. This installs the necessary python packages.
- If you are using raven-app, from the RAVEN app root directory, run
npm start
. If you are using raven-site, simply openindex.html
. - From the RAVEN server root directory, first you need to set an environment variable. Different systems accomplish this differently:
Powershell:
$env:FLASK_APP = "app"
Cmd:set FLASK_APP=app
Bash:export FLASK_APP=app
Then, runflask run
. And that's all!
it may be that the request URL is incorrect.
Ensure that the line let url = <url>
at the top of app.js
in the RAVEN app root directory matches with the URL of the flask server (it will tell you the URL it is running on after you run flask run
). Note that localhost
and 127.0.0.1
are equivalent.
We recommend you simply make sure the flask server is running on localhost:5000
. If you must change the address of the server (not recommended) you will need to change all instances of the string localhost:5000
in the file static/js/main.39a7fb9c.js
to the new server address <ADDRESS>:<PORT>
.