Skip to content

Latest commit

 

History

History
48 lines (26 loc) · 1.44 KB

INSTALL.md

File metadata and controls

48 lines (26 loc) · 1.44 KB

Installing cosr-ops on your local machine

This guide will take you through everything you need to do to have a fully working install of cosr-ops on your local machine.

Please note that we only support Linux and Mac OS X at the moment.

1. Install dependencies on your local machine

There are only 2 dependencies you need to install to get started:

You should make sure your Docker daemon is started. Check the Docker documentation if you are unsure how to start it. For instance on Ubuntu you may need to run sudo service docker start.

2. Download the code & the Docker image

To clone this repository from GitHub, go to your local workspace directory and run:

git clone https://github.com/commonsearch/cosr-ops.git
cd cosr-ops

Next, you should download our pre-built image from the Docker Hub:

make docker_pull

Alternatively, you can do make docker_build to build the image again locally.

3. You're done!

Congratulations! You should now be able to start diving further in the code of cosr-ops.

To open a shell inside the Docker image with all the tools installed, just type:

make docker_shell

Happy hacking!