diff --git a/README.md b/README.md index 357347f..ef9dc4d 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,12 @@ Déployer un serveur privé pour World Of Warcrfat via [cmangos](https://cmangos | World of Warcraft: The Burning Crusade® | **v2.4.3** | `tbc` | https://archive.org/download/World_of_Warcraft_Client_and_Installation_Archive/ISO/WoW-2.4.3_install.rar | | World of Warcraft: Wrath of the Link King® | **v3.3.5a** | `wotlk` | somewher in the web ;) | +## Comment ça marche ? + +3 services sont nécessaires: +- Mangosd : c'est l'émulateur qui simule le serveur WOW ainsi que l'authentification. +- Realmd : C'est le processus qui gère le 'realm', le serveur de jeu avec les évènements et les aasets. +- Base de données qui persiste aussi bien les comptes que les personnages s'y rattachant ainsi que leur progressions respectives. ## Configuration @@ -62,6 +68,10 @@ docker compose up database ### Création du Realm ```bash +./scripts/create_realm.sh +``` + + + +### Inteface pour créer les comptes + +Dans le dossier `registration/` se trouve une interface pour créer des comptes et gérer les changements de mots de passe + +[WOWSimpleREGISTRATION](/registration/README.md) ### TO DO diff --git a/registration/Dockerfile b/registration/Dockerfile index 93bd910..d9d5ebf 100644 --- a/registration/Dockerfile +++ b/registration/Dockerfile @@ -37,6 +37,7 @@ COPY php.ini /usr/local/etc/php/conf.d/custom.ini # Copy the rest of the project COPY . . +RUN rm -rf screenshots # Set permissions RUN chown -R www-data:www-data /var/www/html \