Here's the implementation of the app store for Tildagon, the EMFcamp 2024 badge.
To make an app available in the badge app store, first follow the app dev instructions and put the app in a repository on GitHub. Currently only GitHub is supported - if you'd like to contribute support for another platform, see "Hacking the App Store" below
Once your app is in a repository, add the tildagon-app topic to your repo.
The app store is a little typescript monorepo containing two packages:
- tildagon-app-directory-api: a backend that fetches apps from implemented app sources and exposes them to the web frontend and to the badges
- tildagon-app-directory-site: a web frontend showing apps and installation instructions
You could add additional app sources, modify the website, or add new features.
The repo is set up as a monorepo with separate packages for the API and the site.
We use bun to run code as it supports TypeScript natively. To get started, install the correct version of bun. This is specified in mise.toml. You can install manually, or with mise.
mise install
bun installSome packages within the monorepo are libraries that have a build step. To build those, run:
bun --filter='*' run buildThen you can run the site locally with:
# First export a GITHUB_TOKEN environment variable with a GitHub personal access token
export GITHUB_TOKEN=your_github_token_here
# Then run the site
bun --filter='*' run devIf you would like to avoid having to provide a GitHub token, for example you intend to work only on the frontend, you can set the following environment variable, which will have the backend provide a dataset pulled from the production app store on 2025-10-07.
export APP_STORE_MOCK=trueThe API is a bun server that uses zod to specify the domain models for the store, and implements upstream app "registries" - where the app store retrieves apps from.
The site is an Astro site that uses the API to fetch apps and display them.