Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pjialin/w-forum-api
微信小程序开发微论坛项目后台 API。地址 https://www.weiwol.com/channel/album/408536
https://github.com/pjialin/w-forum-api
Last synced: 2 months ago
JSON representation
微信小程序开发微论坛项目后台 API。地址 https://www.weiwol.com/channel/album/408536
- Host: GitHub
- URL: https://github.com/pjialin/w-forum-api
- Owner: pjialin
- License: mit
- Created: 2018-07-19T13:38:45.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-07-19T13:58:56.000Z (over 6 years ago)
- Last Synced: 2023-03-02T12:51:55.366Z (almost 2 years ago)
- Language: PHP
- Size: 181 KB
- Stars: 7
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# 微论坛 - API
Mpvue 开发小程序 - 后台 Api。 前端页面 [点击前往](https://github.com/pjialin/w-forum)
## 简介
Api 使用 Laravel 5.6 开发## 服务器要求
- PHP >= 7.1.3
- 其它参考 [Laravel 环境要求](https://laravel.com/docs/5.6#installation)## 使用
**克隆代码到本地**
```shell
git clone https://github.com/pjialin/w-forum-api.git
```**安装扩展**
```shell
composer install
```**权限 和 App Key**
```shell
# 赋予目录权限
sudo chmod -R 777 storage
sudo chmod -R 777 bootstrap/cache
# 生成 app key
php artisan key:generate
```**修改配置文件**
复制一份 `.env` 文件,修改对应的数据库配置
```shell
cp .env.example .env
```**创建表**
```shell
php artisan migrate
```
要生成测试数据可以使用
```shell
php artisan db:seed
```