No description
Find a file
2026-04-14 22:01:17 +03:00
.github rebrending contination: add icons 2026-04-13 22:22:01 +03:00
.husky chore: add semantic release (#2759) 2026-03-19 16:26:25 +11:00
.vscode Replace Webpack to Vite (#1023) 2022-12-20 20:47:51 +05:30
contrib rebrending contination: add icons 2026-04-13 22:22:01 +03:00
public localize room settings 2026-04-14 21:27:03 +03:00
scripts chore: add semantic release (#2759) 2026-03-19 16:26:25 +11:00
src localize room settings 2026-04-14 21:27:03 +03:00
.dockerignore Improve Dockerfile (#256) 2022-01-30 20:58:38 +05:30
.eslintignore Replace Webpack to Vite (#1023) 2022-12-20 20:47:51 +05:30
.eslintrc.cjs Fix unread reset and notification settings (#1824) 2024-07-23 15:14:32 +10:00
.gitignore update gitignore 2026-04-13 00:14:04 +03:00
.node-version Pin all the action deps to SHA (#2725) 2026-03-04 12:31:36 +11:00
.npmrc Add authenticated media support (#1930) 2024-09-07 19:15:55 +05:30
.prettierignore Replace Webpack to Vite (#1023) 2022-12-20 20:47:51 +05:30
.prettierrc.json Replace Webpack to Vite (#1023) 2022-12-20 20:47:51 +05:30
build.config.ts feat: URL navigation in auth (#1603) 2024-01-21 18:20:56 +05:30
CLAUDE.md update claude md with project archicture 2026-04-14 22:01:17 +03:00
CODE_OF_CONDUCT.md rebrending contination: add icons 2026-04-13 22:22:01 +03:00
config.json feat(auth): rebrand auth pages to Vojo with mascot, glassmorphism, and i18n 2026-04-13 00:27:34 +03:00
CONTRIBUTING.md rebrending contination: add icons 2026-04-13 22:22:01 +03:00
docker-nginx.conf remove libolm related code (#2300) 2025-03-31 19:10:24 +11:00
Dockerfile Update node to v24.13.1 LTS (#2622) 2026-02-22 18:15:23 +11:00
index.html rebrending contination: add icons 2026-04-13 22:22:01 +03:00
LICENSE Change license to AGPLv3 (#1115) 2023-02-24 17:28:04 +05:30
netlify.toml remove libolm related code (#2300) 2025-03-31 19:10:24 +11:00
package-lock.json rebranding from cinny to vojo: change basic icons and naming 2026-04-13 02:22:44 +03:00
package.json rebranding from cinny to vojo: change basic icons and naming 2026-04-13 02:22:44 +03:00
PROMT.md add promt md for agents 2026-04-12 21:58:54 +03:00
README.md rebrending contination: add icons 2026-04-13 22:22:01 +03:00
tsconfig.json Add authenticated media support (#1930) 2024-09-07 19:15:55 +05:30
vite.config.js rebrending contination: add icons 2026-04-13 22:22:01 +03:00

Vojo

A Matrix client focusing primarily on simple, elegant and secure interface. The main goal is to have an instant messaging application that is easy on people and has a modern touch.

Based on Cinny (MIT license).

Getting started

The web app is available at vojo.chat.

Self-hosting

To host Vojo on your own, build from source and serve the files from dist/ using your preferred webserver.

  • The default homeserver is defined in config.json.

  • You need to set up redirects to serve the assets. Example configurations: nginx, caddy.

  • To deploy on a subdirectory, rebuild the app after updating the base path in build.config.ts.

Local development

Tip

We recommend using a version manager as versions change very quickly. NVM on Windows or nvm on Linux/macOS are good choices.

Execute the following commands to start a development server:

npm ci # Installs all dependencies
npm start # Serve a development version

To build the app:

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

Running with Docker

This repository includes a Dockerfile, which builds the application from source and serves it with Nginx on port 80. To use this locally, you can build the container like so:

docker build -t vojo:latest .

You can then run the container you've built with a command similar to this:

docker run -p 8080:80 vojo:latest

This will forward your localhost port 8080 to the container's port 80. You can visit the app in your browser by navigating to http://localhost:8080.