CodeIgniter Project Starter

I am wondering if there are any tools you guys use to run a CodeIgniter project like ROR? Thanks in advance!

+4
source share
6 answers

I just tried CodeCrafter ( https://launchpad.net/codecrafter ) and it is pretty decent, but there are others:

http://*.com/trac/catalystmodel (see comment) http://codeigniter.com/wiki/Rapyd_Components/ http://*.com/trac/quickmodel (see comment) 

Good luck

+3
source

Learn another code

Something that really helped me went through the Redux 2 authentication system code base (currently in beta).

The project code is well formatted and transparent. It uses a model, view, controller, library and decent configuration file for settings.

The way you write code will give you an idea of โ€‹โ€‹how a CodeIgniter project can be built in a very clean way.

Use library

Other quick launch methods include using the library to capture data from the API. For example, try Flickr , Twitter, or Last FM libraries written by Eliot Hoon.

This allows you to use other site data in interesting ways.

Application example

There is also an example application provided by Derek Allard at this URL .

+2
source

This Net-tuts series sold me on CI. This is not a real pin starter, but it will guide you through the basics and deeper materials.

+1
source

I'm not sure how ROR works, but if you have the unpacked CI in the directory, you can pretty much start building your site. They also have some video tutorials if you need help on how to get started building your site. http://codeigniter.com/tutorials/

0
source

Tools for starting a CodeIgniter project, hmm? Debian, Apache, PHP 5, SciTE ... =)

Start by reading the User Guide . This is the best documentation I've come across.

Then, if you have a project, think about the feature set that the project needs and start looking for free CodeIgniter skins on the wiki . There are a handful of helpers, libraries, plugins, etc. that will do a lot of work for you.

Final note: try to have an open mind. If you try to โ€œmake Railsโ€ in CodeIgniter, you are approaching things in the opposite direction. Instead, try to find out what makes CodeIgniter a great structure and make the most of these features.

0
source

CI has a feature called Scaffolding, which is a graphical admin interface only for your database, through which you can quickly enter test data to start querying and displaying on your page.

The video tutorials and documentation are both first-class, and itโ€™s very easy to get a simple blog and run it.

0
source

All Articles