refactor: 🚚 Begin rebranding to Versia Server

This commit is contained in:
Jesse Wierzbinski 2024-08-19 15:16:01 +02:00
parent 64cef5c6d6
commit 771097d037
No known key found for this signature in database
58 changed files with 2377 additions and 242 deletions

View file

@ -32,7 +32,7 @@ Please upload logs onto a service like [Pastebin](https://pastebin.com/) or [Has
- OS: [e.g. Fedora 39]
- Bun version
- Postgres version
- Lysand commit ID or version
- versia Server commit ID or version
## Additional context

View file

@ -1,9 +1,9 @@
[database]
host = "localhost"
port = 5432
username = "lysand"
password = "lysand"
database = "lysand"
username = "versia"
password = "versia"
database = "versia"
[redis.queue]
host = "localhost"
@ -38,7 +38,7 @@ rules = [
]
[oidc]
# Run Lysand with this value missing to generate a new key
# Run Versia with this value missing to generate a new key
jwt_key = "MC4CAQAwBQYDK2VwBCIEID+H5n9PY3zVKZQcq4jrnE1IiRd2EWWr8ApuHUXmuOzl;MCowBQYDK2VwAyEAzenliNkgpXYsh3gXTnAoUWzlCPjIOppmAVx2DBlLsC8="
[http]
@ -79,7 +79,7 @@ convert_to = "webp"
# access_key = ""
# secret_access_key = ""
# region = "us-west-2"
# bucket_name = "lysand"
# bucket_name = "versia"
# public_url = "https://cdn.example.com"
[validation]
@ -185,7 +185,7 @@ allowed_mime_types = [
[validation.challenges]
# "Challenges" (aka captchas) are a way to verify that a user is human
# Lysand's challenges use no external services, and are Proof of Work based
# Versia Server's challenges use no external services, and are Proof of Work based
# This means that they do not require any user interaction, instead
# they require the user's computer to do a small amount of work
enabled = true
@ -240,8 +240,8 @@ remove_media = [] # NOT IMPLEMENTED
authorized_fetch = false
[instance]
name = "Lysand"
description = "A test instance of Lysand"
name = "Versia"
description = "A test instance of Versia Server"
# URL to your instance logo (jpg files should be renamed to jpeg)
# logo = ""
# URL to your instance banner (jpg files should be renamed to jpeg)

View file

@ -16,11 +16,11 @@ jobs:
ports:
- 5432:5432
env:
POSTGRES_DB: lysand
POSTGRES_USER: lysand
POSTGRES_PASSWORD: lysand
POSTGRES_DB: versia
POSTGRES_USER: versia
POSTGRES_PASSWORD: versia
volumes:
- lysand-data:/var/lib/postgresql/data
- versia-data:/var/lib/postgresql/data
options: --health-cmd pg_isready
--health-interval 10s
--health-timeout 5s