Skip to content
This repository has been archived by the owner on Nov 28, 2023. It is now read-only.

Commit

Permalink
Add details and screenshots
Browse files Browse the repository at this point in the history
  • Loading branch information
rashidlaasri committed Sep 9, 2015
1 parent b1a8125 commit dbfd31f
Showing 1 changed file with 29 additions and 12 deletions.
41 changes: 29 additions & 12 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
# Laravel Web Installer
Do you want your clients to be able to install a Laravel project just like they do with WordPress or any other CMS?
This Laravel package allows users who don't use Composer, SSH etc to install your application just by following the setup wizard.
The current features are :

- Check For Server Requirements.
- Check For Folders Permissions.
- Migrate The Database.
- Seed The Tables.

If you have any suggestions please let me know : https://github.com/RachidLaasri/LaravelInstaller/pulls.

## Installation

Expand All @@ -10,28 +20,35 @@ First, pull in the package through Composer.
}
```

And then, include the service provider within `app/config/app.php`.
And then run :

```
composer update
```

After that, include the service provider within `app/config/app.php`.

```
'providers' => [
RachidLaasri\LaravelInstaller\Providers\LaravelInstallerServiceProvider::class
RachidLaasri\LaravelInstaller\Providers\LaravelInstallerServiceProvider::class,
];
```
## Usage

To use this package run :
Before using this package you need to run :
```bash
php artisan vendor:publish
```

After that, you can edit :
You will notice addtional files and folders appear in your project :

`app/config/installer.php`

And the language file :

`resources/lang/en/messages.php`

And the views on :
- `app/config/installer.php` : In here you can set the requirements along with the folders permissions for your application to run, by default the array cotaines the default requirements for a basic Laravel app.
- `app/public/assets` : This folder contains a css folder and inside of it you will find a `main.css` file, this file is responsible for the styling of your installer, you can overide the default styling and add your own.
- `app/resources/views/vendor/installer` : This folder contains the HTML code for your installer, it is 100% customizable, give it a look and see how nice/clean it is.
- `resources/lang/en/messages.php` : This file holds all the messages/text, currently only English is available, if your application is in another language, you can copy/past it in your language folder and modify it the way you want. If you wanna help us provide more languages for this awesome package please send a pull request https://github.com/RachidLaasri/LaravelInstaller/pulls.

## Screenshots

`resources/views/installer/`
![Laravel web installer](http://i.imgur.com/rqueFgj.png)


0 comments on commit dbfd31f

Please sign in to comment.