]> jfr.im git - irc/unrealircd/unrealircd-webpanel.git/blobdiff - README.md
Some README updates
[irc/unrealircd/unrealircd-webpanel.git] / README.md
index be07bbeb376ddf2d60aacb744c45e1fc3bdc9d6d..5d03f4722cca47fec090a655415798464f2ff3cd 100644 (file)
--- a/README.md
+++ b/README.md
@@ -41,3 +41,23 @@ Edit the configuration file to match your UnrealIRCd's RPC credentials and save
 
 NOTE: You most likely want to put the webpanel behind a login, using a
 `.htaccess` file or similar.
+
+## Updating for end-users ##
+For end-users, when you want to update to the latest version:
+```bash
+git pull
+composer update
+```
+
+## Developers ##
+Developers of the webpanel will naturally use the same procedure as
+above. However, sometimes you will want to update to a newer version
+of the unrealircd-rpc-php library. You then need to run:
+```bash
+# For devs only!
+composer install
+git commit composer.lock
+```
+Commiting the composer.lock file updates the dependency for all
+other users, that way a `composer update` by end-users will update
+to exactly the version that `composer install` just installed.