Bläddra i källkod

Install instructions added to README.md

Simone Cosci 6 år sedan
förälder
incheckning
4223bc9176
1 ändrade filer med 25 tillägg och 0 borttagningar
  1. 25 0
      README.md

+ 25 - 0
README.md

@@ -3,3 +3,28 @@
 Install PHP 7.3, MySql 5.7, phpmyadmin, Let's Encrypt, fail2ban, npm and other with a click.
 
 More info on [https://cipi.sh](https://cipi.sh)
+
+## Installation
+Cloning the git
+```
+git clone https://github.com/andreapollastri/cipi.git <install-directory>
+cd <install-directory>
+composer install
+npm install
+```
+Change (if you want) the initial credential by editing the file `/database/seeds/UsersTableSeeder.php` or use these:
+
+```
+email: admin@admin.com
+password: 12345678
+```
+
+run the migrations with seed
+```
+php artisan migrate:fresh --seed
+```
+You can now run the web server
+
+```
+php artisan serve
+```