1
0
mirror of https://github.com/flarum/core.git synced 2025-08-09 09:57:06 +02:00

Relocate to workbench so that dev dependencies are loaded properly.

This commit is contained in:
Toby Zerner
2014-12-23 22:59:15 +10:30
parent a33fad0ba0
commit 69b732b894
4 changed files with 45 additions and 48 deletions

View File

@@ -68,13 +68,14 @@ Currently Flarum is in its very early stages, and it isnt pretty. **It is far
1. Make sure you have [Composer](http://getcomposer.org), [ember-cli](http://www.ember-cli.com), and [Bower](http://bower.io) installed globally.
2. Create a new [Laravel 4](http://laravel.com/docs/4.2/quick) project.
3. Open up `composer.json` and change `minimum-stability` to `dev`.
4. Run the following commands in your project directory:
3. Clone the Flarum repository into the workbench and install dependencies:
```
composer require flarum/core
cd vendor/flarum/core
git clone https://github.com/flarum/core.git workbench/flarum/core
cd workbench/flarum/core
composer install
cd ../../..
php artisan dump-autoload
```
5. Create a new MySQL database and configure your database details in `app/config/database.php`.