Integrate RESTfull API, Base Model, Ion Auth module and template module.
- CodeIgniter-Ion-Auth: Simple and Lightweight Auth System for CodeIgniter
- Codeigniter-restserver: A fully RESTful server implementation for CodeIgniter using one library, one config file and one controller.
- codeigniter-base-model: CodeIgniter base CRUD model to remove repetition and increase productivity
- CodeIgniter-Template: A Lightweight Codeigniter Template Libray
- CodeIgniter-i18n: i18n library for CodeIgniter 2.1.x
- CodeIgniter-Native-Session: codeigniter native session
- Handlebars.js: Minimal Templating on Steroids
add new virtual hostname on hosts
file (/etc/hosts
)
127.0.0.1 ci.localhost
Apache: create .htaccess
.
RewriteEngine on
RewriteBase /
RewriteCond $1 !^(index\.php|assets|robots\.txt|$)
RewriteRule ^(.*)$ index.php/$1 [L,QSA]
Nginx: please add the following to virtualhost config.
location / {
try_files $uri $uri/ /index.php;
}
Import the SQL structure
$ mysql -u root -p app < sql/app.sql