mirror of https://github.com/flarum/flarum
commit
c10031dadc
|
@ -59,7 +59,7 @@ composer_packages = [ # List any global Composer packages that you wa
|
||||||
# Default web server document root
|
# Default web server document root
|
||||||
# Symfony's public directory is assumed "web"
|
# Symfony's public directory is assumed "web"
|
||||||
# Laravel's public directory is assumed "public"
|
# Laravel's public directory is assumed "public"
|
||||||
public_folder = "/vagrant"
|
public_folder = "/vagrant/public"
|
||||||
|
|
||||||
laravel_root_folder = "/vagrant/laravel" # Where to install Laravel. Will `composer install` if a composer.json file exists
|
laravel_root_folder = "/vagrant/laravel" # Where to install Laravel. Will `composer install` if a composer.json file exists
|
||||||
laravel_version = "latest-stable" # If you need a specific version of Laravel, set it here
|
laravel_version = "latest-stable" # If you need a specific version of Laravel, set it here
|
||||||
|
|
|
@ -121,9 +121,9 @@ return array(
|
||||||
'Illuminate\Validation\ValidationServiceProvider',
|
'Illuminate\Validation\ValidationServiceProvider',
|
||||||
'Illuminate\View\ViewServiceProvider',
|
'Illuminate\View\ViewServiceProvider',
|
||||||
'Illuminate\Workbench\WorkbenchServiceProvider',
|
'Illuminate\Workbench\WorkbenchServiceProvider',
|
||||||
'Flarum\Core\CoreServiceProvider',
|
'Flarum\Core\CoreServiceProvider',
|
||||||
'Flarum\Api\ApiServiceProvider',
|
'Flarum\Api\ApiServiceProvider',
|
||||||
'Flarum\Web\WebServiceProvider',
|
'Flarum\Web\WebServiceProvider',
|
||||||
|
|
||||||
),
|
),
|
||||||
|
|
||||||
|
|
|
@ -33,3 +33,4 @@ cd /vagrant
|
||||||
composer install
|
composer install
|
||||||
php artisan migrate --bench="flarum/core"
|
php artisan migrate --bench="flarum/core"
|
||||||
php artisan db:seed --class="Flarum\Core\Support\Seeders\DatabaseSeeder"
|
php artisan db:seed --class="Flarum\Core\Support\Seeders\DatabaseSeeder"
|
||||||
|
php artisan asset:publish --bench="flarum/core"
|
||||||
|
|
Loading…
Reference in New Issue