Browse Source

fixed typo and added spaces after # in markdown

Added the composer way to install
Simone Cosci 6 years ago
parent
commit
d38c047b1d
1 changed files with 10 additions and 4 deletions
  1. 10 4
      README.md

+ 10 - 4
README.md

@@ -6,9 +6,9 @@ More info on [https://cipi.sh](https://cipi.sh)
 
 
 ## Installation
 ## Installation
 
 
-###There are two ways to install Cipi.
+### There are two ways to install Cipi.
 
 
-####Autoinstall Script
+#### Autoinstall Script
 The first way is run an autoinstall script on a Ubuntu 18.04 LTS based VPS:
 The first way is run an autoinstall script on a Ubuntu 18.04 LTS based VPS:
 ```
 ```
 wget -O - https://cipi.sh/go.sh | bash
 wget -O - https://cipi.sh/go.sh | bash
@@ -16,7 +16,7 @@ wget -O - https://cipi.sh/go.sh | bash
 After installation, you can change your personal data and password in the profile section.
 After installation, you can change your personal data and password in the profile section.
 You can configure a SMTP provider into /cipi/.env file.
 You can configure a SMTP provider into /cipi/.env file.
 
 
-####Laravel Installation
+#### Laravel Installation
 The second way is install Cipi Laravel Project into an hosting:
 The second way is install Cipi Laravel Project into an hosting:
 
 
 Cloning the git
 Cloning the git
@@ -25,9 +25,15 @@ git clone https://github.com/andreapollastri/cipi.git <install-directory>
 cd <install-directory>
 cd <install-directory>
 composer install
 composer install
 ```
 ```
+Using composer
+```
+composer create-project andreapollastri/cipi <install-directory>
+cd <install-directory>
+npm install
+```
 
 
 ## Database
 ## Database
-Creata a new database
+Create a new database
 ```
 ```
 mysql -uroot -p
 mysql -uroot -p
 mysql> create database yourDatabaseName;
 mysql> create database yourDatabaseName;