Giter Site home page Giter Site logo

yaf.scaffold's Introduction

Use Yaf && Charisma create a grid Scaffold

@author [email protected]

Yaf(PHP扩展框架框架Yet Another Framework)

Yaf.Scaffold 免费、开源的脚手架工具. 在一次项目中,使用Yaf与Charisma搭建的脚手架工具,用于快速搭建项目的管理后台。现在向您分享了它,希望能为您的工作带来帮助。

当然,欢迎对这个项目感兴趣的童鞋,也加入这个项目!

Yaf.Scaffold目前提供了什么

  • 使用Yaf构建的清晰MVC框架
  • 高效、可配置的DB\Cache访问类库
  • 数据库字典 /Datatable/dic
  • 简洁、优雅的RESTful服务构建lib
  • 以自身Scaffold机制来管理的Scaffold

Yaf.Scaffold可能的目标

  • 更高效的DB\Cache访问
  • 更方便的Scaffold
  • 构建WorkFlow机制,控制数据流向
  • 以Yaf.Scaffold为基础,快速搭建稳定、可靠、高效的CMS/OA/ERP/CRM…

Scaffold需启用ReWriteEngine

Apache

#.htaccess
RewriteEngine On
RewriteCond $1 !^(index\.php|uploads|resources)
RewriteRule ^(.*)$ index.php/$1 [L]

Nginx

server {
  listen ****;
  server_name  YafScaffold.com;
  root   document_root;
  index  index.php index.html index.htm;

  if (!-e $request_filename) {
    rewrite ^/(.*)  /index.php/$1 last;
  }
}

yaf.scaffold's People

Contributors

neeke avatar

Watchers

 avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.