Love Fuel?    Donate

FuelPHP Forums

Ask your question about FuelPHP in the appropriate forum, or help others by answering their questions.
How do you develop FuelPHP?
  • Some contributions to FuelPHP are relatively easy and you can just tinker with that bit of code, then commit it. But, if you're developing something that requires things like database access, how do you commit your changes without sending your test app to the repo? Do you just permanently have files rolling around that you never commit, or some other strategy?
  • It is the main reason (or at least of of the important ones) for using submodules and seperate repo's. So you can commit something to fuel/core without being worried about anything in app. I do all my testing in a separate virtual host install, setup so I can easily switch core and package versions, and all test code is in a module called test. I've excluded this module in my .gitignore so it will never be part of a commit.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

In this Discussion