1.3 KiB
1.3 KiB
PixelChat
A simple mod to share images in-game.
Features
- Image Sharing: Drag and drop image files into the chat and share them in chat.
Fabric Setup
- Install Fabric: Ensure that you have Fabric installed.
- Download PixelChat: Get the latest version from the releases tab.
- Add to mods folder: Place the downloaded JAR file into your mods folder.
Configuration
A configuration file can be found at
{
// Set where images will be uplaoded to
// You must omit the '/' at the end of the URL
// This must be a PixelChat server (See later on how to set one up yourself)
"image_hosts": [
"https://pc.1e99.eu"
]
}
Server Setup
Setting up a PixelChat server can be done with docker compose or from source.
Docker Compose
services:
"pixelchat":
build: "https://git.1e99.eu/1e99/pixelchat.git"
ports:
- "3000:3000"
From Source
- Install a JDK: Ensure that you have Java 21 installed.
- Clone the git repository:
git clone https://git.1e99.eu/1e99/pixelchat.git
. - Change your working directory:
cd ./pixelchat
- Build the server JAR:
./gradlew :server:shadowJar
. - Run the server:
java -jar ./server/build/libs/server-*-all.jar
.