Daemonize Commit Thread (#14)

* Add ability to set api token via environment variable

* Update version

* Update share link description

* Update OG

* Daemonize commit thread
This commit is contained in:
Jared Zhao
2022-04-28 10:57:55 -07:00
committed by GitHub
parent 14c4704fb9
commit 2d38e8a77d
3 changed files with 4 additions and 6 deletions

View File

@@ -5,10 +5,8 @@
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Web site created using create-react-app"
/>
<meta property="og:title" content="Jetfuel - Python Performance Profiling for Production">
<meta property="og:image" content="https://raw.githubusercontent.com/jetfuel-dev/jetfuel/main/assets/dashboard.png">
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<!--
manifest.json provides metadata used when your web app is installed on a

View File

@@ -28,7 +28,7 @@ def init(url: str, token: str = "default", resolution: float = 5.0) -> None:
_resolution = resolution
# Start data sending thread
t = Thread(target=_commit)
t = Thread(target=_commit, daemon=True)
t.start()

View File

@@ -2,7 +2,7 @@ import setuptools
setuptools.setup(
name="jetfuel",
version="0.0.13",
version="0.0.15",
author="Jared Zhao",
description="Python Performance Profiling for Production",
long_description=open("README.md").read(),