mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 08:28:20 +01:00
1.6 KiB
1.6 KiB
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
- Nuxt - The Intuitive Vue Framework
- TailwindCSS - A utility-first CSS framework
- TypeScript - A typed superset of JavaScript
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.
