承接 wave-framework/scaffolding-app 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

wave-framework/scaffolding-app

最新稳定版本:0.5.1

Composer 安装命令:

composer require wave-framework/scaffolding-app

包简介

An example application using the Wave Framework

README 文档

README

An example application to get started with the Wave framework.

To get started first install Composer

$ curl -s http://getcomposer.org/installer | php

Then create a new wave-framework/scaffolding-app project

The simplest thing to do is just clone the master branch, (dev-master), e.g.

$ composer.phar create-project wave-framework/scaffolding-app ./test dev-master

Then you can run a few of the setup scripts, but at the very minimum you need to generate the routes cache

$ cd test
$ ./vendor/bin/wave generate/routes
Regenerating Routes...  done
$

You can also have a script populate the default database configuration by running

$ ./vendor/bin/wave install

Manually regenerating views can be done with

$ ./vendor/bin/wave generate/views

In development mode views are automatically regenerated when they change.

Apache configuration

Wave requires Apache mod_rewrite (or an equivilent that can transform each request into public/index.php).

A typical VirtualHost configuration might look something like this:

<VirtualHost *:80>
  ServerName wave-app.localhost

  DocumentRoot /var/www/wave-app/public
  <Directory /var/www/wave-app/public>
     # Rewrite directives are set in public/.htaccess. Move
     # them here if you prefer to leave AllowOverride None
     AllowOverride all
  </Directory>
  # Consolidate log files into the same directory the app logs
  # go into.
  ErrorLog /var/www/wave-app/logs/web_error.log
  CustomLog /var/www/wave-app/logs/web_access.log common
</VirtualHost>

Once you have configured your Apache environment you should be able to browse to the application in your browser and be met with a welcome page (and an obligatory gold star).

统计信息

  • 总下载量: 51
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: Unknown
  • 更新时间: 2012-12-14