我想将yoeman用于codeigniter项目。我用这个发电机: https://github.com/homerjam/generator-codeigniter
但我有一个问题,当我运行grunt然后出现如下通知:
Warning: Task "server" not found. Use --force to continue.
Aborted due to warnings.
如何修复警告?以及如何使库(如:/ bower_component)遵循codeigniter模板规则?
答案 0 :(得分:1)
据我所知,该生成器不包含服务器任务。这是有道理的,因为grunt-contrib-connect是Grunt任务中常用的服务器,对于像CodeIgniter这样的PHP框架没有任何用处,因为它不会执行PHP。您需要使用PHP开发服务器(在PHP 5.4及更高版本中,使用-S选项),或者安装适当的Web服务器,如Apache。