HTML frontend for Chaoss/Augur, written with Bootstrap and served by Flask
- setup a virtual environment
python3 -m venv env
source env/bin/activate
- Make sure you have the requirements installed
pip3 install -r requirements.txt
- Run the app
./run.sh
Once the server is running, you can change the default serving
url in config.yml
and either restart the app or navigate to [approot]/settings/reload
in the browser to connect to the desired augur instance. For example, if you are serving from http://new.augurlabs.io you would enter the url: http://new.augurlabs.io/settings/reload.
Acquire the Dockerfile, and run the following commands in the terminal:
docker build -t augur-view .
docker run -p 8000:8000 augur-view
Note that the port configuration for the -p argument is [host]:[container]
, in case you want to adjust the port mappings.
For installation instructions on a server, and information on setting up a proxy, see installing.
To get started with developing for augur_view, see modules.
Copyright 2021 University of Missouri, and University of Nebraska-Omaha