Movatterモバイル変換


[0]ホーム

URL:


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

Sign up
Appearance settings
/pixbytPublic template

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.

License

NotificationsYou must be signed in to change notification settings

DouweM/pixbyt

Repository files navigation

Pixbyt logo

Reimagine what your Tidbyt can do

Pixbyt is a self-hostedTidbyt app server for advanced apps
that aren't supported by the officialcommunity app server
that you can access through Tidbyt's mobile app.

Open in GitHub Codespaces



crossword

jeopardy

common-misconceptions

owen-wilson-facts

plex

apple-tv

letterboxd

parcelapp

homebridge-unifi

guess-the-flag

ffmpeg

revolution

hello-world

dadjoke

speedtest
Your next Tidbyt app

Your Tidbyt does not run apps directly; it depends on a server to periodically run apps and push the resulting images to the device.When you install acommunity app through Tidbyt's mobile app, the app runs on Tidbyt's official app server.For security reasons, there are a ton of limitations on what these apps are allowed to do, which means some awesome app ideas are impossible to implement.

Apps running on Pixbyt have none of these limitations:

  • RunPython scripts and packages, not just Starlark applets
  • Reachlocal network resources, not just the public internet
  • Work withcomplex APIs, not just simple REST HTTP requests
  • Readlocal files, like images or JSON
  • Organize your source code acrossmultiple modules

Pixbyt lets you realize your wildest Tidbyt dreams by making it easy to:

  • build advanced Tidbyt apps,
  • install advanced apps built by the community,
  • manage multiple Tidbyts and apps,
  • package apps together in aDocker image, and
  • launch the app server usingDocker Compose.

How it works

Pixbyt's advanced features are enabled bytap-pixlet, an unofficial Tidbyt app runner that extendsPixlet (the official Tidbyt app development framework) with an unofficial standard library namedPixlib, similar to howStarlib is the unofficial standard library forStarlark (the Python-like language Tidbyt apps are written in).Pixlib comes with functions likefile.read,file.exec,font.height,html.unescape, andhtml.xpath,helpful constants likeconst.WIDTH,const.HEIGHT, andconst.FPS, andoverloadsload to support local modules.

Pixbyt usestap-pixlet to run apps,target-tidbyt andtarget-webp to push the resulting images to your Tidbyt or WebP image files,Airflow to run apps on a schedule, andMeltano to tie these components together.Pixbyt also includes resources topackage your apps into a Docker image (locally orautomatically on GitHub Actions) andlaunch it using Docker Compose.

Try it out

This repo defines a Pixbyt app server with a singlehello-world app that shows off some of its advanced features.It automatically builds aghcr.io/douwem/pixbyt:main Docker image that can belaunched using Docker Compose to render the app to a Tidbyt device every hour:

To quickly see Pixbyt in action, you can open this repo in GitHub Codespaces and render thehello-world app to a WebP image or your own Tidbyt before you add your own apps.Codespaces will automatically install the necessary dependencies and launch you into a web-based VS Code editor.

  1. Click the green "Use this template" button at the top of this page

  2. Choose "Open in a codespace" and wait for the codespace to start

  3. Optionally, update theHELLO_WORLD_NAME environment variable in.env to replaceworld with your own name.

  4. Render app to a WebP image file:

    TAP_PIXLET_MAGNIFICATION=8 meltano run hello-world--webp

    The image will be created atoutput/hello-world/<timestamp>.webp.The exact path is also printed in the command output.

  5. Render app to your Tidbyt:

    1. Find your Device ID and Key in the Tidbyt mobile app under Settings > General > Get API Key.

    2. Update theTIDBYT_DEVICE_ID andTIDBYT_KEY environment variables in.env.

    3. Render thehello-world app and send it to your Tidbyt (in the foreground):

      TAP_PIXLET_BACKGROUND=false meltano run hello-world

Set up your own

When you're ready to start using apps other thanhello-world, follow the steps below to build your own Pixbyt app server using this repo as a template:

1. Create your own Pixbyt repo

Option A: GitHub Codespaces

If you've already opened this template repo in a codespace using the steps above:

  1. Click the "Source Control" icon in the sidebar
  2. Click "Publish"

If you haven't launched a codespace yet:

  1. Click the green "Use this template" button at the top of this page
  2. Choose "Open in a codespace"

Option B: Build locally

  1. Click the green "Use this template" button at the top of this page

  2. Choose "Create a new repository"

  3. Create a new (private) repo

  4. Clone your new repository and enter the new directory:

    git clone git@github.com:<username>/pixbyt.gitcd pixbyt

2. Configure Pixbyt

  1. If the.env configuration file doesn't exist yet, create it from the sample:
    cp .env.sample .env
  2. Update theTZ environment variable in.env to your"TZ" timezone identifier. This is used by many apps that show the (relative) date and time.

Option A: Configure just one Tidbyt

  1. Find your Device ID and Key in the Tidbyt mobile app under Settings > General > Get API Key.
  2. Update theTIDBYT_DEVICE_ID andTIDBYT_KEY environment variables in.env.

Option B: Configure multiple Tidbyts

  1. Ifdevices.yml doesn't exists yet, create it from the sample:
    cp devices.yml.sample devices.yml
  2. For each device:
    1. Add the device todevices.yml underdevices::

      devices:# ...-name:<name>id:$TIDBYT_<NAME>_DEVICE_IDkey:$TIDBYT_<NAME>_KEY
      1. Replace<name> with the room name or another identifier.
      2. Replace<NAME> with the uppercased version thereof.

      For example:

      devices:# ...-name:officeid:$TIDBYT_OFFICE_DEVICE_IDkey:$TIDBYT_OFFICE_KEY
    2. Find your Device ID and Key in the Tidbyt mobile app under Settings > General > Get API Key.

    3. Add theTIDBYT_<NAME>_DEVICE_ID andTIDBYT_<NAME>_KEY environment variables in.env.For example:

      TIDBYT_OFFICE_DEVICE_ID="foo-bar-baz-qux-abc"TIDBYT_OFFICE_KEY="<key>"

3. Add your apps

The most important files in your Pixbyt repo (and likely the only ones you'll want to edit) are the following, which define the apps, their configuration, and their apps:

pixbyt├─ .env# Configuration├─ apps.yml# App schedules├─ devices.yml# Optional: Devices└─ apps   └─<app># One directory for each app      ├─<app>.star# Main Pixlet applet      ├─ pixbyt.yml# Pixbyt metadata      ├─ requirements.txt# Optional: Python packages (one `pip install` argument per line)      ├─ apt-packages.txt# Optional: APT packages (one `apt-get install` argument per line)      ├─*.py# Optional: Python scripts to run using `file.exec`      ├─*.star# Optional: Starlark files to load using `load`      └─*# Optional: Files to read using `file.read`

Out of the box, Pixbyt comes with a singlehello-world app that shows off some of its advanced features and can be used as an example to build your own.

If you're just trying out Pixbyt and don't yet have another app in mind that you'd like to run, you can keephello-world and skip ahead to step 4 to build and launch the app server.

If you don't wanthello-world on your Tidbyt, you can disable it by removing its entry fromapps.yml (and.env), butDO NOT remove theapps/hello-world directory as theGitHub Actions workflow that builds the Docker image uses it to test if the image works.

3.1. Add an app

Option A: Use the examplehello-world app

Skip ahead to step 4 to build and launch the app server.

Option B: Install an existing app
  1. Add the app's repo as a submodule underapps:

    git submodule add https://github.com/<username>/<repository>.git apps/<app>

    For example, to installcrossword:

    git submodule add https://github.com/DouweM/tidbyt-crossword.git apps/crossword

    Note that in this case, the repo is calledtidbyt-crossword, but the app directory needs to be calledcrossword.

Option C: Create a brand-new app
  1. Create a new directory for your app underapps, and enter the new directory:

    cd appsmkdir<app>cd<app>
  2. Create the main applet atapps/<app>/<app>.star.

    Any standardPixlet applet is supported, as well as allPixlib features.

    Note that the app directory and file names need to match.

    Optionally, your app directory can also contain:

    • *.py scripts to run usingfile.exec
    • *.star files to load usingload
    • arbitrary files to read usingfile.read
    • Python packages inrequirements.txt (onepip install argument per line)
    • APT packages inapt-packages.txt(oneapt-get install argument per line)
  3. Create the Pixbyt metadata file atapps/<app>/pixbyt.yml:

    jobs:-name:<app>tasks:  -tap-pixlet--<app> target-tidbyt-name:<app>--webptasks:  -tap-pixlet--<app> target-webpplugins:extractors:  -name:tap-pixlet--<app>inherit_from:tap-pixlet# TODO: If your app does not have a `requirements.txt` defining Python packages, delete the following line:pip_url:git+https://github.com/DouweM/tap-pixlet.git -r apps/<app>/requirements.txtconfig:path:apps/<app># TODO: If your app does not require configuration, delete the following lines:app_config:# TODO: For any key your app reads from `config`, add an entry mapping the lowercase key to an uppercase environment variable, e.g. `name: $HELLO_WORLD_NAME`:<key>:$<APP>_<KEY>

    Most of this is boilerplate forMeltano, you only need to make the following changes:

    1. Replace<app> with the name of your app
    2. Follow theTODO instructions.

3.2. Configure the app

  1. Add the app and its update schedule toapps.yml underapps::

    apps:# ...-name:<app>schedule:'<cron expression>'# If you have multiple Tidbyts defined in `devices.yml`, you can optionally filter them by name:# devices: [<device>]
    1. Replace<app> with the name of the app.

    2. Replace<cron expression> with an appropriatecron expression:

      • Clocks should use* * * * * to update every minute, so that the displayed time is always as fresh as possible.
      • Apps that display a random entry from a list can use*/5 * * * * to update every 5 minutes, so that a fresh entry is shown on every app rotation.
      • Apps that show the latest data from some API can use*/15 * * * * to update every 15 minutes, or something else appropriate for your data source and the expected data freshness.
      • Apps that will always generate the same image can use0 0 * * * to update every day at midnight, just to be sure.

      A recommended schedule is typically documented in the app'sREADME.

    3. Optionally, replace<device> with the name of a device defined indevices.yml to only send the app to that device. By default, the app will be sent to all devices.

    For example:

    apps:# ...-name:hello-worldschedule:'0/15 * * * *'# Every 15 minutesdevices:[office]# Optional

    Note that examples in apps'READMEs sometimes useschedules andinterval keys instead ofapps andschedules. They are equivalent and both are supported, but the latter is preferred.

  2. If the app requires configuration, add its environment variables to.env:

    For any config key the app defines underapp_config: in itspixbyt.yml file, add a value for the uppercase environment variable:

    <APP>_<KEY>="<value>"

    The exact environment variables are typically documented in the app'sREADME.

    For example:

    HELLO_WORLD_NAME="world"

3.3 Test the app

If you're developing a new app, or you're not confident you've configured it correctly, you can test it without building and running the entire app server by following theDevelopment instructions below.

4. Build the app server

To be able to easily run your app server using Docker Compose, you will build a Docker image from your repo containing Pixbyt and your apps.

Option A: Build using GitHub Actions

  1. Editdocker-compose.yml:

    1. Underx-remote-image:, replace<username> with your GitHub username
    2. Underpixbyt:, comment out<<: *local-image and uncomment<<: *remote-image on the next line
  2. Commit your changes:

    git add -Agit commit -m"Set up my Pixbyt"
  3. Push your repo up to GitHub:

    git push origin main

    This will automatically trigger a GitHub Actions workflow to build a Docker image containing Pixbyt and your apps whenever your apps or their schedules change.

Option B: Build locally

Note that you'll need to do this each time your apps or their schedules change.

  1. EnsureDocker is installed.

Note that Docker is not available in GitHub Codespaces.If you've opened your Pixbyt repo in GitHub Codespaces, use the GitHub Actions method above instead.

  1. Build a Docker image containing Pixbyt and your apps:

    docker compose build

5. Launch the app server

During testing and development, you can do this on your local machine.In production, you'll likely want to do this on a NAS or other homelab, or on any other (virtual) server that has access to the required network resources.

Note that you'll need to do this each time your apps or their schedules change and a new Docker image is built, or whenever their configurations change.

  1. EnsureDocker is installed.

  2. If you chose to build your Docker image using GitHub Actions in the previous step,authenticate with the GitHub Container Registry.

  3. Create or update.env with your configuration, based onthe sample or the configuration you used during development.

  4. Launch Pixbyt using Docker Compose:

    docker compose up --pull --build -d

Your Pixbyt app server is now running, and your apps will update on schedule!You can find logs for your apps underlogs/apps/<app>/.

How to develop apps with Pixbyt

During app development or debugging, you will not want to build the entire Docker image each time your apps, their schedules, or their configurations change, nor will you want to run the entire app server.

Instead, you can directly render a specific app to a WebP image file or your Tidbyt, and quickly iterate on your app based on what you see in the logs and the output image.

Set up development environment

Option A: GitHub Codespaces

The quickest way to start developing is using GitHub Codespaces, which will automatically install the necessary dependencies and launch you into a web-based VS Code editor.

If you're already inside a codespace, continue to the next step.

If you've already created your own repo using this template repo:

  1. Click the "<> Code" button at the top of the page
  2. Choose "Codespaces" > "Create codespace on main"

If you haven't created a new repo from this template yet:

  1. Click the green "Use this template" button at the top of this page
  2. Choose "Open in a codespace"

Option B: Develop locally

  1. InstallPixlet:

  2. InstallMeltano:

  3. If your project containsapps as submodules, initialize them:

    git submodule update --init
  4. Manually install any APT packages defined in your apps'apt-packages.txt files.

  5. Installtap-pixlet,target-tidbyt, andtarget-webp using Meltano:

    meltano install

Option C: Docker image

If you've already built a Docker image and want to test the apps inside it without making changes to them, you can use thedocker compose commands below.

Render app to a WebP image file

The image will be created atoutput/<app>/<timestamp>.webp.The exact path is also printed in the command output.

Regular size (64x32)

meltano run<app>--webp# Using Docker image:docker compose run pixbyt run<app>--webp

For example:

meltano run hello-world--webp# Using Docker image:docker compose run pixbyt run hello-world--webp

Magnified 8 times (512x256)

TAP_PIXLET_MAGNIFICATION=8 meltano run<app>--webp# Using Docker image:docker compose run -e TAP_PIXLET_MAGNIFICATION=8 pixbyt run<app>--webp

For example:

TAP_PIXLET_MAGNIFICATION=8 meltano run hello-world--webp# Using Docker image:docker compose run -e TAP_PIXLET_MAGNIFICATION=8 pixbyt run hello-world--webp

Render app to your Tidbyt

Send to foreground

The app will immediately show up on your Tidbyt.This is useful during development.

TAP_PIXLET_BACKGROUND=false meltano run<app># Using Docker image:docker compose run -e TAP_PIXLET_BACKGROUND=false pixbyt run<app>

For example:

TAP_PIXLET_BACKGROUND=false meltano run hello-world# Using Docker image:docker compose run -e TAP_PIXLET_BACKGROUND=false pixbyt run hello-world

Send to background

The app will be added to the Tidbyt app rotation.This is useful when you're running this command on a schedule, to make sure that the app will be up to date the next time it comes up in the app rotation.

meltano run<app># Using Docker image:docker compose run pixbyt run<app>

For example:

meltano run hello-world# Using Docker image:docker compose run pixbyt run hello-world

Keep apps up to date

If you're working with Pixbyt in GitHub Codespaces or locally, you can quickly iterate on apps and test your changes (this is not possible when you're debugging inside a Docker container).Changes to an app's source files are automatically picked up, but changes to APT and Python package dependencies aren't.

If an app defines Python packages in itsrequirements.txt file, you'll need to manually do a clean install of the app's Meltano plugin every time it changes:

meltano install --clean extractor tap-pixlet--<app>

For example:

meltano install --clean extractor tap-pixlet--hello-world

If an app defines APT packages in itsapt-packages.txt file, you'll need to manually install them every time they change.

About

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.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

[8]ページ先頭

©2009-2025 Movatter.jp