From 58925f3afaae78f88da0c15dea8f3c1ea3199a02 Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Sat, 26 Aug 2023 09:51:47 +0200 Subject: [PATCH] Added debug instructions --- roles/docker-pixelfed/README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/roles/docker-pixelfed/README.md b/roles/docker-pixelfed/README.md index 4fdb18fd..82aeaddc 100644 --- a/roles/docker-pixelfed/README.md +++ b/roles/docker-pixelfed/README.md @@ -65,6 +65,22 @@ docker-compose ps -a docker-compose logs -f ``` +## Debug +To debug the system set APP_DEBUG to true, like descriped [here](https://docs.pixelfed.org/technical-documentation/config/). + +```bash +nano config/app.php +php artisan cache:clear +php artisan route:cache +php artisan view:clear +php artisan config:cache +``` + +## Modifying files +```bash +apt update && apt upgrade && apt install nano +``` + ## Further Reading For additional information, refer to these resources: - [Docker image on Docker Hub](https://hub.docker.com/r/zknt/pixelfed)