pixbyt
pixbyt copied to clipboard
Pixbyt is a self-hosted Tidbyt app server for advanced apps that aren't supported by the official community app server that you can access through Tidbyt's mobile app.
Regression from moving away from the Meltano DAG generator. (This behavior was a side effect of `meltano schedules list --format=json`.
The cron `schedule` can already be modified to only update during certain hours, but the app will still show up on the Tidbyt -- just outdated. There's no Mute API,...
Right now managing apps and devices takes a mix of editing YAML files, `git submodule` commands, and `meltano` commands. We can do better!
Would look great in the corner of a monitor or on the Apple Vision Pro!
See `plugins/airflow.cfg` and https://airflow.apache.org/docs/apache-airflow/stable/release_notes.html. ``` DeprecationWarning: The namespace option in [kubernetes] has been moved to the namespace option in [kubernetes_executor] - the old setting has been used, but please update...
Update: Pull the submodule, see https://stackoverflow.com/questions/1030169/pull-latest-changes-for-all-git-submodules Delete: `git rm apps/`
Currently I just run this using cron every to remove logs older than one day: ```bash sudo find pixbyt/logs/apps/ -type f -mtime +1 -exec rm -fv {} \\; ``` I...