Versia Server frontend, designed with Nuxt.
Find a file
2024-06-15 20:44:16 -10:00
.github fix: 🐛 Bugixes, add automatic GitHub Actions deployment 2024-05-11 22:37:57 -10:00
.vscode fix(build): 🐛 Give proper permissions to GitHub Actions build 2024-04-14 15:29:49 -10:00
components feat: ♻️ Redesign password reset page 2024-06-15 20:44:16 -10:00
composables feat: ♻️ Rewrite registration UI 2024-06-15 20:34:35 -10:00
layouts feat: Allow primary color changes through Tailwind config 2024-06-15 15:42:48 -10:00
pages feat: ♻️ Redesign password reset page 2024-06-15 20:44:16 -10:00
public feat: Make PWA installable with icons and screenshots 2024-06-15 12:41:23 -10:00
styles feat: use CSS variables for color themes 2024-06-15 16:39:58 -10:00
types/mastodon chore: ⬆️ Update @lysand-org/client for new types 2024-06-11 15:02:30 -10:00
utils feat: ♻️ Rewrite registration UI 2024-06-15 20:34:35 -10:00
.dockerignore refactor: 🎨 Move Lysand-FE into its own repository 2024-04-14 15:16:57 -10:00
.gitignore Revert "feat: init Toothless" 2024-05-16 20:27:17 -10:00
app.vue feat: use CSS variables for color themes 2024-06-15 16:39:58 -10:00
biome.json refactor: 🎨 Move Lysand-FE into its own repository 2024-04-14 15:16:57 -10:00
bun.lockb feat: ♻️ Rewrite registration UI 2024-06-15 20:34:35 -10:00
Dockerfile refactor(build): 🐛 Switch final docker image to Node (use Bun for everything else except final Docker) 2024-04-24 21:25:54 -10:00
LICENSE docs: 📝 Make README prettier, add LICENSE 2024-06-09 17:53:51 -10:00
nuxt.config.ts fix: 🐛 Add background color for PWA 2024-06-15 13:10:59 -10:00
package.json feat: ♻️ Rewrite registration UI 2024-06-15 20:34:35 -10:00
README.md feat: Improve accessibility everywhere 2024-06-09 18:33:14 -10:00
settings.ts feat: Introduce groundwork for settings page 2024-06-06 13:09:07 -10:00
tailwind.config.ts feat: use CSS variables for color themes 2024-06-15 16:39:58 -10:00
tsconfig.json refactor: 🎨 Move Lysand-FE into its own repository 2024-04-14 15:16:57 -10:00

Lysand Logo

lysand-fe

Lysand-FE is a beautiful, fast and responsive front-end for the Lysand project.

Features

  • Timelines: public, home, local
  • Login
  • Notifications
  • Replies
  • Quotes
  • Markdown posts (quasi-unrestricted)
  • Dark mode
  • Following
  • Multiple accounts
  • Custom Emojis
  • Lysand Permissions support
  • Note editing
  • Alt text support everywhere
  • Media uploads
  • WCAG 2.2 AAA compliance
    • Testing is automated and may not catch all issues, please report any accessibility issues you find.
  • Settings
  • Profile editing

Browser Support

The following browsers are supported (issues will be prioritized):

  • Chromium: 110+
  • Firefox: 110+
  • Safari: 16+
  • IE: None.

The following browsers will very likely work, but are not officially supported:

  • Chromium: 80+
  • Firefox: 80+
  • Safari: 12+
  • IE: None.

Other browsers may work, but are not guaranteed to.

Performance

JavaScript Bloat

The total JavaScript bundle size is less than 900 kB, but this is made even smaller by the fact that the bundle is split into multiple files, and only the necessary files are loaded on each page.

Benchmarks

Benchmarks are due to be conducted soon™.

Installation

Lysand-FE is included in the provided docker-compose file during Lysand Server installation.

To have Lysand-FE and Lysand Server running on the same domain, edit the Lysand Server configuration to point to the Lysand-FE container's address (frontend category inside config).

Manual Installation

Here are the steps to install Lysand-FE manually:

Docker/Podman

services:
    fe:
        image: ghcr.io/lysand-org/lysand-fe:main
        container_name: lysand-fe
        restart: unless-stopped
        networks:
            - lysand-net
        environment:
            NUXT_PUBLIC_API_HOST: https://yourserver.com

Then, the frontend will be available at http://localhost:3000 inside the container. To link it to a Lysand Server, set the NUXT_PUBLIC_API_HOST environment variable to the server's URL.

License

This project is licensed under the AGPL 3.0 - see the LICENSE file for details.

Acknowledgments

Projects

  • Bun: Thanks to the Bun team for creating an amazing JavaScript runtime.
  • Nuxt: Thanks to the Nuxt team for creating an amazing Vue framework.

People

  • April John: Creator and maintainer of the Lysand Server ActivityPub bridge.