#perfmanager Mozilla perfomance alerts manager
##Ubuntu 14.04 Development Build Instructions
-
Visit Docker and get docker up and running on your system.
-
Add your user to the
docker
system group. You may need to start a new terminal/session after doing this. Check the output ofdocker ps
and if you don't see permissions warnings you should be fine. -
Install docker-compose by following the instructions on this page
-
Run the following git clone (specify a directory of your choosing if you like):
git clone https://github.com/mishravikas/perfmanager.git
-
cd into the name of the directory into which you cloned the git repository
cd perfmanager
-
Run virtualenv on the git cloned directory to setup the Python virtual environment:
virtualenv venv
-
Activate the virtual environment:
source venv/bin/activate
-
Run docker-compose to set up the environment:
cd dockerfiles; docker-compose up --no-recreate
-
Visit http://localhost:8080/ in your browser once you see
Starting Server
on the console.