De commit voegt nieuwe instructies toe voor het opzetten van de Adhaan applicatie als een kiosk op een Raspberry Pi. Inclusief stappen zoals Raspberry Pi OS installatie, project downloaden en het uitvoeren van een automatische setup via een script. Daarnaast is de repository-URL in het installatieproces bijgewerkt naar de correcte URL.
44 lines
912 B
Markdown
44 lines
912 B
Markdown
# 🍓 Adhaan Raspberry Pi Kiosk Setup
|
|
|
|
Complete setup voor het draaien van de Adhaan applicatie op een Raspberry Pi in fullscreen kiosk mode.
|
|
|
|
## 🚀 Snelle Installatie
|
|
|
|
### 1. Raspberry Pi OS installeren
|
|
- Download Raspberry Pi OS (Desktop versie aanbevolen)
|
|
- Flash naar SD kaart met Raspberry Pi Imager
|
|
- Enable SSH en WiFi in imager settings
|
|
|
|
### 2. Eerste boot en SSH
|
|
```bash
|
|
ssh pi@raspberrypi.local
|
|
# Standaard wachtwoord: raspberry
|
|
```
|
|
|
|
### 3. Project downloaden
|
|
```bash
|
|
cd ~
|
|
git clone https://git.tarikfaik.nl/Tarik/Adhaan adhan
|
|
cd adhan
|
|
```
|
|
|
|
### 4. Automatische setup uitvoeren
|
|
```bash
|
|
chmod +x pi-setup.sh
|
|
./pi-setup.sh
|
|
```
|
|
|
|
### 5. Herstart
|
|
```bash
|
|
sudo reboot
|
|
```
|
|
|
|
## ✨ Wat gebeurt er?
|
|
|
|
Na de herstart:
|
|
1. 🐳 Docker containers starten automatisch
|
|
2. 🖥️ X server start automatisch
|
|
3. 🌐 Chromium opent fullscreen naar http://localhost:5090
|
|
4. 🕌 Adhaan applicatie is zichtbaar
|
|
|
|
## 🔧 |