运行步骤
打开终端输入以下命令
1.从github拉取模版项目
git clone https://github.com/PerfectlySoft/PerfectTemplate.git
2.进入到项目目录下
cd PerfectTemplate
3.编译项目
swift build
4.运行项目
.build/debug/PerfectTemplate
在终端控制台看到这样的信息:
[INFO] Starting HTTP server localhost on 0.0.0.0:8181
说明服务器已经打开,此时在浏览器中输入http://localhost:8181/可以看到页面输出 hello world
5.在安装xcode的前提下执行以下命令
swift package generate-xcodeproj
这时会生成一个PerfectTemplate.xcodeproj文件,打开这个文件选择在我的Mac上运行,就可以在xcode上运行并调试服务器了
6.如果在局域网内想用手机或其他电脑访问这台服务器,只需在网络设置里面找到本台电脑的ip地址,直接用ip地址访问即可