Skip to content
This repository has been archived by the owner on May 19, 2021. It is now read-only.

Latest commit

 

History

History
26 lines (19 loc) · 636 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 636 Bytes

vmprof-viewer server

For vmprof-viewer usage instructions, see https://github.com/blue-yonder/vmprof-viewer-client.

To get the vmprof-viewer server running, follow a standard Django deployment:

# Clone repo
git clone https://github.com/blue-yonder/vmprof-viewer-server
cd vmprof-viewer-server
git submodule update --init

# Apply our vmprof-server patch
cd vmprof-server/; git apply ../vmprof-server-patch.diff; cd -

# Install dependencies
virtualenv env
. env/bin/activate
pip install -r requirements.txt

# Bootstrap server application
vmprof_viewer/manage.py migrate

# Start server
vmprof_viewer/manage.py runserver