Versia Server frontend, designed with Nuxt.
Find a file
2024-05-08 10:48:23 -10:00
.github feat(build): 👷 Add SBOM and provenance data to Docker build 2024-05-07 22:20:46 -10:00
.vscode fix(build): 🐛 Give proper permissions to GitHub Actions build 2024-04-14 15:29:49 -10:00
components feat: 💄 UI changes, new collapsible sidebars 2024-05-08 02:15:21 -10:00
composables fix: 🔒 Remove unnecessary crossorigin attributes 2024-05-04 19:33:50 -10:00
layouts feat: 💄 UI changes, new collapsible sidebars 2024-05-08 02:15:21 -10:00
pages fix: 💄 Add slight margin to Lysand logo on login page 2024-05-08 10:48:23 -10:00
public style: 🎨 Change logo to WebP version as SVG one had gradient issues 2024-04-29 14:05:01 -10:00
types/mastodon feat: ♻️ Change code to build in static mode, add timelines, profiles and notes, new design 2024-04-21 21:38:51 -10:00
.dockerignore refactor: 🎨 Move Lysand-FE into its own repository 2024-04-14 15:16:57 -10:00
.gitignore feat: 💄 UI changes, new collapsible sidebars 2024-05-08 02:15:21 -10:00
app.vue fix: 🚑 Fix errors when logging in with incorrect credentials 2024-04-28 13:48:03 -10:00
biome.json refactor: 🎨 Move Lysand-FE into its own repository 2024-04-14 15:16:57 -10:00
bun.lockb chore: 📦 Update all packages 2024-05-07 22:13:57 -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
nuxt.config.ts fix: 🐛 Fix form-action CSP 2024-05-05 23:00:15 -10:00
package.json feat: 💄 UI changes, new collapsible sidebars 2024-05-08 02:15:21 -10:00
README.md docs: 📝 Update README to add more info 2024-05-06 09:17:12 -10:00
tailwind.config.ts feat: Add quoting, replies, refactor parts of old code 2024-04-27 20:35:26 -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
  • Dark mode
  • Following
  • Settings
  • Profile editing

Tech Stack

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.