A currently very WIP fork of Sable that adds the i18n logic from cinny-i18n
  • TypeScript 99.1%
  • JavaScript 0.5%
  • CSS 0.2%
  • HTML 0.1%
Find a file
philipp d98f06e842
Some checks failed
Cloudflare Worker Preview Deploy / deploy (push) Has been cancelled
CodeQL Advanced / Analyze (javascript-typescript) (push) Has been cancelled
CodeQL Advanced / Analyze (actions) (push) Has been cancelled
Build and publish Docker image / build-and-push (push) Has been cancelled
Create Release PR / prepare-release (push) Has been cancelled
Quality checks / Format check (push) Has been cancelled
Quality checks / Build (push) Has been cancelled
Quality checks / Tests (push) Has been cancelled
Quality checks / Knip (push) Has been cancelled
Quality checks / Typecheck (push) Has been cancelled
Quality checks / Lint (push) Has been cancelled
wip: i18n port of Sable - still resolving file conflicts
2026-05-06 03:30:37 +02:00
.changeset Fix empty messages (#754) 2026-05-05 17:33:55 -05:00
.github Update CodeQL action versions in codeql.yml 2026-03-29 03:56:56 +02:00
.vscode chore: switch oxfmt to ts config 2026-04-19 16:47:05 +02:00
contrib feat(sentry): initialize SDK, performance instrumentation, developer settings, and error capture 2026-03-15 23:40:58 -04:00
docs feat(sentry): switch crash reporting from opt-out to opt-in 2026-03-17 09:03:12 -04:00
infra chore: migrate package manager from npm to pnpm 2026-03-11 15:19:09 +01:00
public wip: i18n port of Sable - still resolving file conflicts 2026-05-06 03:30:37 +02:00
scripts chore: scope no-console ignores to files 2026-04-19 17:04:29 +02:00
src wip: i18n port of Sable - still resolving file conflicts 2026-05-06 03:30:37 +02:00
.dockerignore ci(docker): build site once and package per-arch 2026-03-07 00:54:17 +00:00
.gitattributes Create .gitattributes 2026-03-05 22:34:11 -06:00
.gitignore added md 2026-04-12 10:50:50 +03:00
.node-version Merge upstream 2026-03-04 19:21:00 -06:00
.nvmrc fix: badge positioning and alignment across sidebar components 2026-03-12 14:25:32 -04:00
build.config.ts feat: URL navigation in auth (#1603) 2024-01-21 18:20:56 +05:30
Caddyfile fix(caddy): add cache-control headers for assets, sw.js, and index.html 2026-04-06 12:33:58 -04:00
CHANGELOG.md chore: prepare release 1.15.1 2026-05-05 20:26:24 +00:00
CODE_OF_CONDUCT.md Update CODE_OF_CONDUCT.md 2026-03-13 21:38:40 -05:00
config.json Remove relic of a bygone era 2026-05-04 21:50:11 -05:00
CONTRIBUTING.md Add donation link to contributing guidelines 2026-04-09 22:10:33 -05:00
Dockerfile fix: docker images 2026-03-12 00:31:27 +01:00
index.html Update favicon and apple-touch-icon paths to relative 2026-03-22 17:20:34 +01:00
knip.json chore: switch oxfmt to ts config 2026-04-19 16:47:05 +02:00
knope.toml migrate to oxlint and oxfmt 2026-04-16 22:15:13 -05:00
LICENSE Change license to AGPLv3 (#1115) 2023-02-24 17:28:04 +05:30
oxfmt.config.ts chore: switch oxfmt to ts config 2026-04-19 16:47:05 +02:00
oxlint.config.ts chore: scope no-console ignores to files 2026-04-19 17:04:29 +02:00
package.json chore: prepare release 1.15.1 2026-05-05 20:26:24 +00:00
pnpm-lock.yaml add katex and marked deps and spoiler and math processing 2026-04-29 16:16:50 -05:00
pnpm-workspace.yaml chore: merge dev into hazre/fix/sidebar-count-badge-positioning 2026-03-25 15:47:50 +01:00
README.md fix#: correct GitLab docs url following new schema 2026-03-19 17:13:46 +02:00
tsconfig.json refactor(unstable prefixes): inital refactor to clean up the codebase 2026-05-05 16:47:02 +02:00
vite.config.ts refactor(unstable prefixes): inital refactor to clean up the codebase 2026-05-05 16:47:02 +02:00
vitest.config.ts refactor: standardize usage of unstable prefixes across components 2026-05-05 18:21:36 +02:00

Sable

A Matrix client built to enhance the user experience with quality-of-life features, cosmetics, utilities, and sheer usability. See the changelog.

Soon to be replaced desktop apps can be downloaded here. They auto-update by pulling the website.

Join our matrix space here to discuss features, issues, or meowing.

Forked from Cinny.

Getting started

The web app is available at app.sable.moe and gets updated on frequently, as soon as a feature is deemed stable.

You can also download our desktop app for windows and linux from releases.

Self-hosting

You have a few options for self hosting, you can:

  1. Run the prebuilt docker container.
  2. Deploy on a site like GitLab Pages. Jae has a guide here.
  3. Build it yourself.

Docker

Prebuilt images are published to ghcr.io/sableclient/sable.

  • latest tracks the current dev branch image.
  • X.Y.Z tags are versioned releases.
  • X.Y tags float within a release line.
  • Pushes to dev also publish a short commit SHA tag.

Run the latest image with:

docker run --rm -p 8080:8080 ghcr.io/sableclient/sable:latest

Then open http://localhost:8080.

If you want to override the bundled config.json, mount your own file at /app/config.json:

services:
  sable:
    image: ghcr.io/sableclient/sable:latest
    ports:
      - '8080:8080'
    volumes:
      - ./config.json:/app/config.json:ro

Build it yourself

To build and serve Sable yourself with nginx, clone this repo and build it:

pnpm i # Installs all dependencies
pnpm run build # Compiles the app into the dist/ directory

After that, you can copy the dist/ directory to your server and serve it.

  • In the config.json, you can modify the default homeservers, feature rooms/spaces, toggle the account switcher, and toggle experimental simplified slilding sync support.

  • To deploy on subdirectory, you need to rebuild the app youself after updating the base path in build.config.ts.

    • For example, if you want to deploy on https://sable.moe/app, then set base: '/app'.

Local development

Tip

We recommend using a version manager as versions change quickly. fnm is a great cross-platform option (Windows, macOS, and Linux). NVM on Windows and nvm on Linux/macOS are also good choices. Use the version defined in .node-version.

Execute the following commands to start a development server:

fnm use --corepack-enabled # Activates the Node version and enables corepack
# If you not using fnm, install corepack manually: npm install --global corepack@latest
corepack install # Installs the pnpm version specified in package.json
pnpm i # Installs all dependencies
pnpm run dev # Serve a development version

To build the app:

pnpm run build # Compiles the app into the dist/ directory

Deployment and infrastructure

Deployment workflows and infrastructure details live in infra/README.md.