Install gulp, laravel-elixir, bootstrap-sass and others.
npm install
Install libraries bower
bower install
Packagist install the packages using the composer.
composer install
Set or create .env
file with your database settings, .env.example
file can be used as an example.
php artisan key:generate
php artisan migrate
Let access to tinker artisan to create the first user to access the CMS.
php artisan borgert:user
OR
php artisan tinker
$user = new App\User;
$user->name = 'Your Name';
$user->email = '[email protected]';
$user->password = \Hash::make('YourPassword');
$user->status = 1;
$user->save();
In the console started to listen to gulp our files *.less and *.js that are within the folder resources/assets/[js,less]
If you have modifications. I remember that in this case I'm just using less
, can also be used stylus && sass
.
gulp watch
In another console we started the server.
php artisan serve
Visit http://localhost:8000/admin
- Making a pull request or by creating an [issue] (https://github.com/odirleiborgert/borgert-cms/issues).
Report with a [issue] (https://github.com/odirleiborgert/borgert-cms/issues).