Skip to content
/ ravel Public
forked from raftalks/ravel

CMS developed with Laravel 4 PHP framework and Angularjs

License

Notifications You must be signed in to change notification settings

FR6/ravel

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ravel

STATUS: UNDER DEVELOPMENT

CMS Package for Laravel 4

Screenshot

How to Install

{
	"require": {
		"laravel/framework": "4.0.*",
		"raftalks/ravel": "*"
	},
	"autoload": {
		"classmap": [
			"app/commands",
			"app/controllers",
			"app/models",
			"app/database/migrations",
			"app/database/seeds",
			"app/tests/TestCase.php"
		]
	},
	"minimum-stability": "dev"
}
  • Add Ravel Service Provider to the app/config/app.php file under the array key "providers" as shown below
'providers' => array(
		
		'Raftalks\Ravel\RavelServiceProvider',

)
  • Configure your database settings in the L4 app/config/database.php file
  • Open your terminal in the L4 App root directory and run composer update command
  • 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 installing 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.

  • By default the CMS admin panel is available on http://www.domain.com/admin and you can change the base url to admin panel by changing the app config file of the package.

Documentation will be updated soon

About

CMS developed with Laravel 4 PHP framework and Angularjs

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 89.0%
  • JavaScript 11.0%