/daza-backend

daza.io 服务端,使用 Laravel 进行开发的 API Only 项目

Primary LanguagePHPApache License 2.0Apache-2.0

Daza.io Back-End

Build Status

线上地址

相关项目

演示

Live Demo

项目依赖

快速开始

克隆项目源码到本地

$ cd ~/Documents/Projects
$ git clone git@github.com:lijy91/daza-backend.git
$ cd daza-backend

使用 Composer 安装项目依赖

$ composer install

配置环境变量

创建 .env 配置文件

$ 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

加入讨论组

微信限制,加我微信时请注明加入讨论组。

捐赠作者

License

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.