Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion example/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Expand Down
2 changes: 2 additions & 0 deletions example/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Django<2
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The title of this PR is Example project: Require django>2, but here I see Django<2 🤔

Copy link
Author

@bj00rn bj00rn Jun 26, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oops, fixed typos in title and commits 😭.

need to get my 🐊s straight

django_opentracing