-
Notifications
You must be signed in to change notification settings - Fork 38
Installation
Victor edited this page Jul 5, 2013
·
1 revision
- Install L4 App from Github ( Watch this if you need to know how : http://net.tutsplus.com/tutorials/php/how-to-setup-laravel-4/)
- In your app composer.json file, add:
"require": {
"raftalks/ravel": "*"
}
- Configure your database settings in the L4 app/config/database.php file
- Open your terminal in the L4 App root directory and run
php composer.phar update
command - Add Ravel Service Provider to the app/config/app.php file under the array key "providers" as shown below
'providers' => array(
'Raftalks\Ravel\RavelServiceProvider',
)
- And run the following command in the terminal to start installing the CMS package
php artisan ravel:install
- The above command will publish all the assets and run the migration and seeds
- Before using Ravel CMS, you may want to do some configuration changes like setup a username and password, look inside vendor/raftalks/ravel/src/config/app.php file, by default the username is "admin" and password is "ravel".
- Use the following composer update command to download the updates
php composer.phar update
- and after downloading the updates, run the following artisan command to make sure migrations and package assets gets updated
php artisan ravel:update