Skip to content

Slobug/codeigniter-angularjs

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CAB-JS

Codeigniter + AngularJS + Bootstrap

Components

* Codeigniter 3.x * AngularJS 1.x * Bootstrap 3

Installation

* Download or clone this repository * Edit database config in appliaction/config/database.php * Import codeigniter-angularjs.com.sql file to your database

Apache/Nginx Config

* For Apache use .htaccess

\
    RewriteEngine on
    RewriteBase /codeangular/
    RewriteCond $1 !^(index\.php|resources|robots\.txt)
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php?/$1 [L]
\


* For Nginx place following code in your conf file:

location / {
    try_files $uri $uri/ /index.php?$args;
    if ($request_uri ~ "^/index\.php/") {
        rewrite ^/index.php/(.*) /$1 redirect;
    }
}


License

* CAB-JS is available for free (under the GNU GENERAL PUBLIC LICENSE Version 3) * Please respect each component license independently

About

Codeigniter + AgularJS + Bootstrap 3

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 99.6%
  • Other 0.4%