mirror of
https://github.com/jetfuel-dev/jetfuel.git
synced 2025-12-17 16:34:16 -06:00
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:
@@ -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
|
||||
|
||||
@@ -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()
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user