diff --git a/guide/other/developerMustSee.md b/guide/other/developerMustSee.md index eb0773c02130932674482609b2235d250918f06f..aaec2db1df22cb8f4b6b7985ffdff567bb7c5abc 100644 --- a/guide/other/developerMustSee.md +++ b/guide/other/developerMustSee.md @@ -8,9 +8,9 @@ ### 开发环境搭建 1. 在 `本地PC` 上安装好 `BuildAdmin` 系统,作为开发环境,有疑问请[看完这三点常见问题](/guide/other/developerMustSee.html#%E5%B8%B8%E8%A7%81%E9%97%AE%E9%A2%98)。 -2. 全程使用 `php think run` 命令启动的服务来进行开发工作,**不开启** `Nginx、Apache` 之类的服务器软件,可参考:[启动安装服务](https://doc.buildadmin.com/guide/install/start.html#%E5%90%AF%E5%8A%A8%E5%AE%89%E8%A3%85%E6%9C%8D%E5%8A%A1) +2. 全程使用 `php think run` 命令启动的服务来进行开发工作,**不用开启** `Nginx、Apache` 之类的服务器软件,可参考:[启动安装服务](https://doc.buildadmin.com/guide/install/start.html#%E5%90%AF%E5%8A%A8%E5%AE%89%E8%A3%85%E6%9C%8D%E5%8A%A1) 3. 在安装 `BuildAdmin` 时您已经填写了系统的数据库资料,需要开启对应的数据库服务,数据库资料被保存在 `config/database.php` 文件。 -4. 在 `/web` 目录内,执行 `npm run dev` 命令,在浏览器打开 [localhost:1818](http://localhost:1818/),域名一定是 `localhost`(后端已配置它允许跨域)。 +4. 在 `/web` 目录内,执行 `npm run dev` 命令,在浏览器打开 [localhost:1818](http://localhost:1818/),域名必须是 `localhost`(后端已配置它允许跨域)。 5. 开发时,建议开启 `TP框架` 的调试模式并了解如何调试接口,参考:[开启调试模式](https://doc.buildadmin.com/senior/server/debug.html) 和 [调试接口](https://doc.buildadmin.com/senior/server/apiDebug.html)。 6. 我们还为您准备了 [代码编辑器配置](https://doc.buildadmin.com/senior/codeEditor.html) 和 [系统运行流程](https://doc.buildadmin.com/senior/process.html) 文档,也值得一看。 @@ -32,4 +32,4 @@ **3. 每次改动都需要 `重新发布` ?** -错误。如以上的第 `2` 点所描述,只需要启动热更新服务进行开发工作即可,只在开发工作完成将要上线时,才进行重新发布。 +错误。如以上的第 `2` 点所描述,启动热更新服务(`web` 目录下执行 `npm run dev`)进行开发工作时无需重新发布;只在开发工作完成将要上线时,才进行重新发布。