File tree Expand file tree Collapse file tree 5 files changed +157
-25
lines changed Expand file tree Collapse file tree 5 files changed +157
-25
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ update: env
4646
4747.PHONY : format
4848format : env
49- $(shell . .venv/bin/activate && isort -rc ./)
49+ $(shell . .venv/bin/activate && isort ./)
5050 $(shell . .venv/bin/activate && black ./)
5151
5252
Original file line number Diff line number Diff line change 11"""Initialize app."""
2+ from ddtrace import patch_all
23from flask import Flask
34
5+ patch_all ()
6+
47
58def create_app ():
69 """Construct the core flask_wtforms_tutorial."""
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ flask-wtf = "*"
2424python-dotenv = " *"
2525email_validator = " *"
2626uWSGI = " ^2.0.19"
27+ ddtrace = " ^0.44.0"
2728
2829[tool .poetry .dev-dependencies ]
2930lesscpy = " *"
Original file line number Diff line number Diff line change 11click == 7.1.2 ; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0"
2+ ddtrace == 0.44.0 ; (python_version >= "2.7" and python_full_version < "3.0.0" ) or (python_full_version >= "3.5.0" )
23dnspython == 2.0.0 ; python_version >= "3.6"
34email-validator == 1.1.2
45flask-wtf == 0.14.3
56flask == 1.1.2 ; (python_version >= "2.7" and python_full_version < "3.0.0" ) or (python_full_version >= "3.5.0" )
67idna == 2.10 ; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.4.0"
8+ intervaltree == 3.1.0 ; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0"
79itsdangerous == 1.1.0 ; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0"
810jinja2 == 2.11.2 ; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0"
911markupsafe == 1.1.1 ; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0"
12+ protobuf == 3.14.0 ; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0"
1013python-dotenv == 0.15.0
14+ six == 1.15.0 ; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0"
15+ sortedcontainers == 2.3.0 ; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0"
16+ tenacity == 6.2.0 ; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0"
17+ uwsgi == 2.0.19.1
1118werkzeug == 1.0.1 ; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0"
1219wtforms == 2.3.3
You can’t perform that action at this time.
0 commit comments