Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
主要是将步骤写的详细些,后面有时间再整理一份小白都看的懂的文档。
  • Loading branch information
tianmingxing committed Nov 20, 2015
1 parent e69f5c9 commit eea4328
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,29 @@

项目部署
========
1. 在MySQL中新建api数据库,并执行 db.sql文件
1. 在MySQL中新建api数据库,并执行 db.sql文件。如果你是在命令行操作
```sql
source /tmp/db.sql;
```
2. 在./MinPHP/core/config.php配置文件中修改数据库连接信息
```php
//数据库连接配置
'db'=>array(
'host' => 'localhost', //数据库地址
'dbname' => 'api', //数据库名
'user' => 'root', //帐号
'passwd' => 'root', //密码
'linktype' => 'pdo', //数据库连接类型 支持mysqli与pdo两种类型
),
```
3. 把项目部署到Apache或Nginx中即可

使用说明
========
1. 当前版本(v1.1)版本只做了简单权限控制,一是有权限;二是无权限。
2. **游客** 只能查看接口分类和接口信息 __无增删改查权限__
3. 默认的管理员有两个分别为admin(密码:654321)与root(密码:123456)。
4. 密码已经采用MD5加密存储,如果想要修改密码可先登录进去再通过页面修改。当然也可以直接修改数据库
4. 如果想要修改密码可先登录进去再通过页面修改;当然你也可以直接修改数据库```user```表的字段来实现
```sql
SELECT MD5('your passwd.');
```
Expand Down

0 comments on commit eea4328

Please sign in to comment.