From d4093aefa404cbb059183450087b520f5c3d907d Mon Sep 17 00:00:00 2001 From: denisdulici Date: Wed, 20 Nov 2019 12:26:01 +0300 Subject: [PATCH 1/2] updated installation --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 184531ff0..feb79c855 100644 --- a/README.md +++ b/README.md @@ -23,13 +23,13 @@ Akaunting uses [Laravel](http://laravel.com), the best existing PHP framework, a ## Installation -* Install [Composer](https://getcomposer.org/download), [Npm](https://nodejs.org/en/download/) +* Install [Composer](https://getcomposer.org/download) and [Npm](https://nodejs.org/en/download/) * Download the [repository](https://github.com/akaunting/akaunting/archive/master.zip) and unzip into your server * Open and point your command line to the directory you unzipped Akaunting -* Run the following command: `composer install` -* Run the following command: `npm install` -* Run the following command: `npm run dev` -* Finally, launch the [installer](https://akaunting.com/docs/installation) +* Run the following commands: `composer install` , `npm install` , `npm run dev` +* Finally, launch the [web installer](https://akaunting.com/docs/installation) or run the following command: + +`php artisan install --db-host="localhost" --db-name="my_db" --db-username="my_admin" --db-password="my_pass" --company-name="My Company" --company-email="my@company.com" --admin-email="my@company.com" --admin-password="123456"` ## Contributing From 81e7bd8d740918b84222b1da13e7e877a092572e Mon Sep 17 00:00:00 2001 From: denisdulici Date: Wed, 20 Nov 2019 12:27:43 +0300 Subject: [PATCH 2/2] readme --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index feb79c855..71f1a6298 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,9 @@ Akaunting uses [Laravel](http://laravel.com), the best existing PHP framework, a * Run the following commands: `composer install` , `npm install` , `npm run dev` * Finally, launch the [web installer](https://akaunting.com/docs/installation) or run the following command: -`php artisan install --db-host="localhost" --db-name="my_db" --db-username="my_admin" --db-password="my_pass" --company-name="My Company" --company-email="my@company.com" --admin-email="my@company.com" --admin-password="123456"` +```bash +php artisan install --db-host="localhost" --db-name="my_db" --db-username="my_admin" --db-password="my_pass" --company-name="My Company" --company-email="my@company.com" --admin-email="my@company.com" --admin-password="123456" +``` ## Contributing