# vmprof-server **Repository Path**: mirrors_njsmith/vmprof-server ## Basic Information - **Project Name**: vmprof-server - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-19 - **Last Updated**: 2026-08-02 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # VMProf [![Build Status](https://travis-ci.org/vmprof/vmprof-server.svg?branch=master)](https://travis-ci.org/vmprof/vmprof-server) A Virtual Machine profiling platform. Currently restricted to PyPy and CPython. The service is hosted at http://vmprof.com ## Development Setting up development can be done using the following commands: $ virtualenv -p /usr/bin/python3 vmprof3 $ source vmprof3/bin/activate # setup django service (vmprof3) $ cd ../vmprof-server (vmprof3) $ pip install -r requirements/development.txt (vmprof3) $ python manage.py migrate (vmprof3) $ python manage.py runserver -v 3 # install vmprof for development (only needed if you want to co develop vmprof-python) (vmprof3) $ git clone git@github.com:vmprof/vmprof-python.git ../ (vmprof3) $ cd ../vmprof-python (vmprof3) $ python setup.py develop Please also consult our section for development at https://vmprof.readthedocs.org. ## Test For new feature requests open a new branch or fork the repository. We use continous integration provided by travis. Before you commit run tests using py.test: py.test . ## Docker Build docker image: docker docker build -t vmprof-server . Run the server inside docker container: mkdir -p $PWD/data docker run --rm -ti -p 8000:8000 -v $PWD/data:/data vmprof-server