Skip to content

An extensible micro framework for PHP newbies and crafters.

License

Notifications You must be signed in to change notification settings

victorybiz/CodeNimbly

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CodeNimbly

An extensible micro framework for PHP newbies and crafters.

"Coded" with love in Nigeria.

Requirements

  • PHP 5.4 or greater
  • Apache mod_rewrite module

License

CodeNimbly is released under the MIT license.

Installation

1. Download CodeNimbly and extract to your web directory.

2. Configure your webserver.

For Apache, edit your .htaccess file with the following:

<IfModule mod_rewrite.c>
    Options +FollowSymLinks
    RewriteEngine On    
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d    
    RewriteRule . /index.php [QSA,L]
</IfModule>

For Nginx, add the following to your server declaration:

# nginx configuration
location / {
    if (!-e $request_filename){
        rewrite ^(.*)$ /index.php break;
    }
}

3. Goto app/config/*.php and configure your application and set your $config['base_url'] in app/config/app.php

4. Point your browser to your $config['base_url'] and hopefully see your starting page. CodeNimbly is bundled with Bootstrap 3 and JQuery v2.1.1.

Documentation

CodeNimbly codebase is easy to understand but user friendly documentation coming soon.

Credits

About

An extensible micro framework for PHP newbies and crafters.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages