$ cd ~/Documents/Projects
$ git clone git@github.com:lijy91/daza-backend.git
$ cd daza-backend
使用 Composer 安装项目依赖
$ composer install
$ cp .env.example .env
$ php artisan key:generate
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=daza_db
DB_USERNAME=root
DB_PASSWORD=
$ php artisan migrate
$ php artisan db:seed
$ php artisan db:seed --class=MockdataSeeder
$ php artisan serve
$ open http://localhost:8000
TODO
Copyright (C) 2015 JianyingLi <lijy91@foxmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.