Installatie
Installatie Handleiding 🛠️
Inhoudsopgave
- Vereisten
- Stap-voor-stap Installatie
- Automatische Installatie
- Handmatige Installatie
- Probleemoplossing
Vereisten
Zorg dat je systeem aan deze minimale eisen voldoet:
- PHP 8.2 of hoger
- Composer
- Node.js & NPM
- MySQL/MariaDB of SQLite
- Git
- Redis (optioneel, maar aanbevolen)
Stap-voor-stap Installatie
1. Repository Klonen
git clone https://github.com/OpenMinetopia/portal.git
cd portal
2. Dependencies Installeren
composer install
3. Setup wizard gebruiken
De eenvoudigste manier om te installeren is via onze setup wizard:
php artisan panel:setup
De wizard helpt je met:
- Basis configuratie
- Database setup
- Mail configuratie
- Minecraft integratie
- API tokens genereren
- Redis setup (optioneel)
3. Eerste Admin Account
- Registreer een account via de web interface
- Maak de gebruiker administrator:
php artisan user:set-admin
Probleemoplossing
Veel voorkomende problemen
Composer memory issues
COMPOSER_MEMORY_LIMIT=-1 composer install
Storage Permissions
sudo chown -R www-data:www-data storage bootstrap/cache
chmod -R 775 storage bootstrap/cache
Database Issues
- Controleer je .env database configuratie
- Verifieer dat MySQL/MariaDB draait
- Check database gebruikersrechten
Last updated 2 months ago