Difference between revisions of "Setting up your workstation for Joomla development"

From Joomla! Documentation

m (merge notice)
(18 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{underconstruction}}{{inuse}}
+
{{merge|Setting up your workstation for Joomla! development|date=15 Sep 2013}}
'''Under construction Note''': 1. Gathering different resources and place in this structure. 2. Structure resources in 1 repeating structure 3. Make resources less redundant
+
This is a trial to better structure all the wiki pages around developing on and with joomla.   
 
+
Such as:
 
+
* [[Setting up your workstation for Joomla! development]].  A complete step-by-step guide to installing the Eclipse IDE on your local workstation for Joomla! development.
{{RightTOC}}
 
 
 
 
 
== Introduction ==
 
This is a trial to better structurize all the wiki pages talking through one another.   
 
This is a more summarized, general and joomla oriented version of [[Setting_up_your_workstation_for_PHP_development]]
 
  
 
== Installing a web server ==
 
== Installing a web server ==
* [http://www.apachefriends.org/en/xampp.html XAMPP]
+
Installing a typical web server environment is very easy with following [[wikipedia:List_of_AMP_packages|AMP-packages]] (Apache, MySQL, PHP).
** [[Configuring_a_XAMPP_server_for_joomla_development]]
+
* '''[http://www.apachefriends.org/en/xampp.html XAMPP] (Mutliple OS)'''
 +
** [[Configuring a XAMPP server for joomla development]]
 
** [[Xampp]]
 
** [[Xampp]]
**[[Configuring_a_LAMPP_server_for_PHP_development]]
+
* '''[[wikipedia:LAMP (software bundle)|LAMP]]''' (Linux)
* http://www.wampserver.com/en/ WAMP], [[wikipedia:LAMP_(software_bundle)|LAMP]], MAMP, ...
+
**[[Configuring a LAMPP server for PHP development]]
== Installing an IDE / Editor==
+
* '''[[wikipedia:WAMP|WAMP]] (Windows)''',.  A good choice for for a local server environment for windows is [http://www.wampserver.com/en/ WampServer].
*[[wikipedia:Eclipse_(software)|Eclipse IDE]]
+
* '''[[wikipedia: MAMP|MAMP]] (Macintosh / OS X)''' [http://www.mamp.info/en/download.html MAMP by living-e AG]  may be a good choice.
 +
If you want use XDebug for debuggin, you'll need to tune php settings
 +
* [[Edit PHP.INI File for XDebug]]
 +
 
 +
== Installing an IDE / Editor (and debugging)==
 +
*[[wikipedia:Eclipse (software)|Eclipse IDE]]
 
** [[Configuring Eclipse for joomla development]]
 
** [[Configuring Eclipse for joomla development]]
** [[How_to_configure_Eclipse_IDE_for_PHP_development]]
+
** [[How to configure Eclipse IDE for PHP development]]
 
** [[Configuring Eclipse IDE for PHP development]]
 
** [[Configuring Eclipse IDE for PHP development]]
* Komodo Edit
+
** [http://community.joomla.org/blogs/community/828-webinar-using-eclipse-for-joomla-development.html Using Eclipse for Joomla! Development] Video webinar demonstrating overview of Eclipse features for Joomla! development
 +
* [[wikipedia:ActiveState_Komodo|Komodo Edit]]
 
** [[Configuring Komodo Edit for Joomla Code Completion]]
 
** [[Configuring Komodo Edit for Joomla Code Completion]]
* NetBeans
+
* [[wikipedia:NetBeans|NetBeans]]
** [[NetBeans_overview]]
+
** [[NetBeans overview]]
* UltraEdit, ...
+
* UltraEdit, Notepad++, ...
== Installing a debugger ==
+
*Sublime Text 2 Editor
* Xdebug on Eclipse
+
**[https://tutsplus.com/course/improve-workflow-in-sublime-text-2 Perfect Workflow in Sublime Text 2 tutorial]
* Zend Debugger on Eclipse, ..
+
=== Debugging specifics ===
 +
* [[Running Automated Tests for the Joomla CMS]]
 +
* [[How to debug your code]] ([[Do not use die to debug]]!)
 +
 
 
== Installing a version control ==
 
== Installing a version control ==
If you like to contribute to the actual Joomla! code, SVN is what is used there.
+
SVN ([[wikipedia:Apache Subversion|Subversion]]) will allow you to keep your Joomla! code up to date with the latest changes, to test patches and to participate in bug squashing.
* SVN on Eclipse
+
 
* Zend debugger on Eclipse
+
Details on how to work with the JoomlaCode repository are located on the [http://developer.joomla.org/code.html Joomla! Developers] site.
* ...
+
 
 +
* [[Working with git and github/My first pull request]] - The way of the current Joomla! code base.
 +
* [[Installing Subverson on Eclipse for Joomla! development]] - The old way of the Joomla! code base.
 +
* [[Tortoise SVN|Installing and using Tortoise SVN]]
 +
* [http://developer.joomla.org/gsoc2008/16-overall-project/99-joomlacode-svn-with-easyeclipse.html Video tutorial (Nur Aini Rakhmawati)] on using JoomlaCode SVN with [http://www.easyeclipse.org/site/distributions/php.html EasyEclipse] (Linux, OS X and Windows).
 +
 
 
== Installing a build mechanism ==
 
== Installing a build mechanism ==
* Ant
+
* [[wikipedia:Apache_Ant|Ant]]
* Phing
+
**  [[Joomla Ant build files]]
 +
* [http://www.phing.info Phing] It's possible that Phing can use al ant files (needs confirmation though)
 +
** [[Setting up your workstation for extension development (build with Phing)]]
 +
** [[Extension development using eclipse and phing]] This article explains one way in which you can set up your workstation for writing Joomla! extensions. It assumes that you are using Eclipse and that you are familiar with using Eclipse for working with Joomla! and Subversion. For more information about the basics of getting started with Eclipse for Joomla! development.
 
* ...
 
* ...
  
 
== Related ==
 
== Related ==
* [[Setting_up_your_workstation_for_PHP_development]]
+
* [[Installing Joomla locally]]
* [[Installing_Joomla_locally]]
+
* [[Setting up a testing environment]]
* [[Setting_up_a_testing_environment]]
+
* [[Setting up your workstation for PHP development]]
* [[Setting_up_your_workstation_for_Joomla!_development]]
+
Help is appreciated finding related pages and making these pages less redundant.
* [[Setting up your workstation for extension development]]
+
 
[[Extension development using eclipse and phing]]
+
 
 +
[[Category:Development]]
 +
[[Category:Tutorials]]

Revision as of 00:33, 15 September 2013

Merge-icon.png
Merge Notice

It has been suggested that this article or section be merged with Setting up your workstation for Joomla! development. (Discuss). Proposed since 15 Sep 2013.

This is a trial to better structure all the wiki pages around developing on and with joomla. Such as:

Installing a web server[edit]

Installing a typical web server environment is very easy with following AMP-packages (Apache, MySQL, PHP).

If you want use XDebug for debuggin, you'll need to tune php settings

Installing an IDE / Editor (and debugging)[edit]

Debugging specifics[edit]

Installing a version control[edit]

SVN (Subversion) will allow you to keep your Joomla! code up to date with the latest changes, to test patches and to participate in bug squashing.

Details on how to work with the JoomlaCode repository are located on the Joomla! Developers site.

Installing a build mechanism[edit]

Related[edit]

Help is appreciated finding related pages and making these pages less redundant.