mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-08 11:11:33 -07:00
f14b3cec97
Co-authored-by: Johann150 (563f3672a9
)
2.6 KiB
2.6 KiB
Post-install
This document describes things you can do after successfully installing Iceshrimp.
Automatic translation
DeepL
- Create a Free or Pro API account on DeepL's website
- Copy the API key to Control Panel > General > DeepL Translation
- Check the "Pro account" switch if you registered for paid account
LibreTranslate
- Install LibreTranslate
- Get an API URL and API key, copy and paste them into Control Panel > General > Libre Translate
Object Storage (S3)
Recommended if using Docker
- Set up a bucket on provider's website (for example: AWS, Backblaze B2, Wasabi, minio or Google Cloud)
- Go to Control Panel > Object Storage and follow instructions
Customising assets, locale
- To add custom CSS for all users, edit
custom/assets/instance.css
. - To add static assets (such as images for the splash screen), place them in the
custom/assets/
directory. They'll then be available on https://example.com/static-assets/filename.ext. - To add custom locales, place them in the
custom/locales/
directory. If you name your custom locale the same as an existing locale, it will overwrite it. If you give it a unique name, it will be added to the list. Also make sure that the first part of the filename matches the locale you're basing it on. (Example: en-FOO.yml) - To add custom error images, place them in the
custom/assets/badges
directory, replacing the files already there. - To add custom sounds, place only mp3 files in the
custom/assets/sounds
directory. - To update custom assets without rebuilding, just run
yarn run gulp
.
Another admin account
- Go to desired user's page, click 3 dots in upper right corner > About > Moderation, turn on "Moderator"
- Go back to Overview and copy their ID
- Run
psql -d iceshrimp
, replaceiceshrimp
with a name of your database if needed- If instance is ran by a different system user: Prepend that command with
sudo -U iceshrimp
, replaceiceshrimp
with a name of that user if needed - Docker Compose users:
docker compose exec db psql -d iceshrimp -U iceshrimp
, replace bothiceshrimp
with name of your db, and username owning that db respectively, if needed
- If instance is ran by a different system user: Prepend that command with
- Run
UPDATE "user" SET "isAdmin" = true WHERE id='999999';
, where999999
is the copied ID of that user - Restart your Iceshrimp server
Removing admin privileges
- Get ID of the user
- Run
psql
the same way when adding admin - Run
UPDATE "user" SET "isAdmin" = false WHERE id='999999';
, where999999
is the copied ID of that user - Restart your Iceshrimp server
- Remove moderator privileges of the user