diff --git a/example/README.md b/example/README.md index 272b9e6..e2c1369 100644 --- a/example/README.md +++ b/example/README.md @@ -2,8 +2,13 @@ This is an example of a Django site with tracing implemented using the django_opentracing package. To run the example, make sure you've installed package `opentracing` and the `Tracer` of your choice (Jaeger, LightStep, etc). -Navigate to this directory and then run: +Navigate to this directory and install requirements: +``` +> pip install -r requirements.txt +``` + +Run the server: ``` > python manage.py runserver 8000 ``` diff --git a/example/requirements.txt b/example/requirements.txt new file mode 100644 index 0000000..cbf4b84 --- /dev/null +++ b/example/requirements.txt @@ -0,0 +1,2 @@ +Django<2 +django_opentracing