Skip to content
Victor edited this page Jul 5, 2013 · 1 revision

How to Install

	"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".

How to update the package

  • 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
Clone this wiki locally