Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nicholasyager/dbt-streamdeck
A Stream Deck plugin for dbt Cloud
https://github.com/nicholasyager/dbt-streamdeck
Last synced: 3 months ago
JSON representation
A Stream Deck plugin for dbt Cloud
- Host: GitHub
- URL: https://github.com/nicholasyager/dbt-streamdeck
- Owner: nicholasyager
- License: mit
- Created: 2024-02-09T16:17:30.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-02-09T20:06:35.000Z (9 months ago)
- Last Synced: 2024-06-11T13:45:41.503Z (5 months ago)
- Language: JavaScript
- Size: 76.2 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-dbt - dbt-streamdeck - Stream Deck plugin enables you to view the status of models and jobs as actions in your Stream Deck. (Integrations)
README
# dbt-streamdeck
The `dbt-streamdeck` Stream Deck plugin enables you to view the status of models and jobs as actions in your Stream Deck.
## Quick Start Guide
A short guide to help you get started quickly.
### Clone the repo
`git clone https://github.com/nicholasyager/dbt-streamdeck`
### SymLink to your Stream Deck plugin library
Create a symbolic link of the plugin's folder inside of the Stream Decks Plugins folder.
Windows SymLink
```console
# Note: this works inside the cmd, not on PowerShell
# %cd% gets the full absolute path to the plugin folder
mklink /D C:\Users\%USERNAME%\AppData\Roaming\Elgato\StreamDeck\Plugins\com.nicholasyager.dbt-streamdeck.sdPlugin %cd%\src\com.nicholasyager.dbt-streamdeck.sdPlugin
```MacOs SymLink
```console
# Using $(pwd) to get the full absolute path to the plugin folder
ln -s $(pwd)/src/com.nicholasyager.dbt-streamdeck.sdPlugin ~/Library/Application\ Support/com.elgato.StreamDeck/Plugins/
```