Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wenbinye/admin-gen
PHP CRUD generator by PhalconX
https://github.com/wenbinye/admin-gen
Last synced: 20 days ago
JSON representation
PHP CRUD generator by PhalconX
- Host: GitHub
- URL: https://github.com/wenbinye/admin-gen
- Owner: wenbinye
- Created: 2015-08-13T08:02:13.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-17T07:34:15.000Z (over 9 years ago)
- Last Synced: 2024-11-07T20:52:46.135Z (2 months ago)
- Language: JavaScript
- Homepage:
- Size: 813 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
CRUD generator
==============================create crud files by:
$ sqlite3 cache/demo.db < data/schema.sql
$ chmod 666 cache/demo.db
$ ./bin/cli gen all customersnginx configuration example:
server {
listen 80;
root /path/to/admin-gen/public;
index index.php index.html index.htm;
try_files $uri $uri/ @rewrite;location @rewrite {
rewrite ^/(.*)$ /index.php?_url=/$1;
}
location ~ \.php {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index /index.php;
include fastcgi_params;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}This project is inspired by [CRUD Admin Generator](http://crud-admin-generator.com/)