Sorry, the documentation is here. You cant really develop in that way over FTP, your changes will probably disappear once Docker or the server is restarted. If you want to develop on the server (not a good idea in my opinion), you need to install from scratch, without Docker.
Lemmy Support
Support / questions about Lemmy.
Thx. I'll try it. But Anyway, I can't find where I can erase
<source srcset="https://lem.ouraw.wtf/pictrs/image/98fab6dd-f762-47ce-873a-cc8c5446c491.jpeg?format=webp&thumbnail=256" type="image/webp">
@nutomic@lemmy.ml @dessalines@lemmy.ml guys, plz any ideas :)
What is it that you are trying to do?
I wanna reskin for lemmy :) With full size preview and excerpt, but now i have something like this:
The proper way to do development is to clone the lemmy-ui repo, make changes and test them locally. Then commit to git, and build a Docker image which you upload to your server. You can use the commands below to push the Docker image without using Docker hub.
# on your computer
docker build . -f docker/prod/Dockerfile -t lemmy:test
docker save lemmy:test > lemmy-test.tar
scp lemmy-test.tar bakchodi.org:
# on server
docker load < lemmy-test.tar
The part about git is important because the AGPL license requires that all code changes are also published. So if you make changes only on the server, thats technically a license violation. Plus it will be very hard to maintain in the long term.
I am not sure about the thumbnail size, but looking through the lemmy-ui repo might give you some hint.
Look lem.ouraw.wtf :)
And i have one more question.
when i try change configurations thru: https://lem.ouraw.wtf/admin, there are no changes happening.
I read that I can make changes via config/config.hjson, and i found 2 files with this name on the "docker folder" thru SFTP. Still No changes.
How i can to get to config.hjson via putty maybe?
Some changes require a restart. You need to run docker-compose up -d
in the Lemmy folder on the server for that.