Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
This repository was archived by the owner on Sep 11, 2021. It is now read-only.

Commit 61982d4

Browse filesBrowse files
committed
Added datadog trace.
1 parent 1e36b13 commit 61982d4
Copy full SHA for 61982d4

File tree

7 files changed

+245
-277
lines changed
Filter options

7 files changed

+245
-277
lines changed

‎Makefile

Copy file name to clipboardExpand all lines: Makefile
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ update: env
4646

4747
.PHONY: format
4848
format: env
49-
$(shell . .venv/bin/activate && isort -rc ./)
49+
$(shell . .venv/bin/activate && isort ./)
5050
$(shell . .venv/bin/activate && black ./)
5151

5252

‎Pipfile

Copy file name to clipboardExpand all lines: Pipfile
-15Lines changed: 0 additions & 15 deletions
This file was deleted.

‎Pipfile.lock

Copy file name to clipboardExpand all lines: Pipfile.lock
-156Lines changed: 0 additions & 156 deletions
This file was deleted.

‎flask_sqlalchemy_tutorial/__init__.py

Copy file name to clipboardExpand all lines: flask_sqlalchemy_tutorial/__init__.py
+3Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
"""Initialize Flask app."""
22
from flask import Flask
33
from flask_sqlalchemy import SQLAlchemy
4+
from ddtrace import patch_all
5+
46

57
db = SQLAlchemy()
8+
patch_all()
69

710

811
def create_app():

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.