Difference between revisions of "Getting started with Gramps development"

From Gramps
Jump to: navigation, search
m
(Editors)
Line 14: Line 14:
 
If you run your development version of GRAMPS as you usual user, it will access to your usual GRAMPS database and a bug may result in losing productive data. Here are some options you may choose to prevent this. If you have enough resources, I recommend using VirtualBox.
 
If you run your development version of GRAMPS as you usual user, it will access to your usual GRAMPS database and a bug may result in losing productive data. Here are some options you may choose to prevent this. If you have enough resources, I recommend using VirtualBox.
 
=== VirtualBox ===
 
=== VirtualBox ===
[http://www.virtualbox.org/ VirtualBox] is an opensource virtualisation solution. Install it, run it and you have a virtual PC in your PC. Network connection works out of the box without extra configuration needed. Install your favourite Linux distribution and start hacking GRAMPS in a fully separated environment.
+
[http://www.virtualbox.org/ VirtualBox] is an opensource virtualisation solution. Install it, run it and you have a virtual PC in your PC. Network connection works out of the box without extra configuration needed. Install your favourite Linux distribution and start hacking GRAMPS in a full separated environment.
 
=== chroot ===
 
=== chroot ===
 
You may also use a chroot to result in a similar separation as virtualbox. If you use a chroot for developping GRAMPS, please add informations here.
 
You may also use a chroot to result in a similar separation as virtualbox. If you use a chroot for developping GRAMPS, please add informations here.
Line 22: Line 22:
 
== Get the source tree ==
 
== Get the source tree ==
 
To get the source tree, you will need SVN. Please have a look at the dedicated tutorial [[Brief introduction to SVN]]
 
To get the source tree, you will need SVN. Please have a look at the dedicated tutorial [[Brief introduction to SVN]]
 +
 
== Install an Edior ==
 
== Install an Edior ==
 +
=== Geany ===
 +
[http://geany.uvena.de/ Geany] is a nice development Editor. One feature I like is that it will automaticly recognise python code and list Symbols in a side bar, allowing to jump quickly in your code.
 +
 +
Install it and you can start coding !
 +
 
=== Eclispe + pydev ===
 
=== Eclispe + pydev ===
=== Geany ===
+
Eclipse with pydev brings an integrated IDE for Python. To run it, you have to do a few steps configuration.
=== PyPE ==
+
 
 +
 
 +
 
 +
=== Other ===
 +
Add you favorite Editor + setup here
  
 
== Run GRAMPS from the source ==
 
== Run GRAMPS from the source ==

Revision as of 15:44, 30 August 2008


Warning : this tutorial is work under progress. Feel free to help and modify it


Introduction

This tutorial aims to help you in your first hacking of GRAMPS. It will help you setting up a development environment and explain where to find the files you need.

This tutorial assumes that you are using GNU/Linux (but it might help under another OS) and that you know the basics of Python programming language.

Set up your environment

Optional : set up a development environment

I highly recommend that you do not use your usual environment for developing GRAMPS. Doing so may result in data loss in your GRAMPS database ! If you run your development version of GRAMPS as you usual user, it will access to your usual GRAMPS database and a bug may result in losing productive data. Here are some options you may choose to prevent this. If you have enough resources, I recommend using VirtualBox.

VirtualBox

VirtualBox is an opensource virtualisation solution. Install it, run it and you have a virtual PC in your PC. Network connection works out of the box without extra configuration needed. Install your favourite Linux distribution and start hacking GRAMPS in a full separated environment.

chroot

You may also use a chroot to result in a similar separation as virtualbox. If you use a chroot for developping GRAMPS, please add informations here.

another user

You may also simply do you development as another user, so you won't access to your usual ~/.gramps database when testing.

Get the source tree

To get the source tree, you will need SVN. Please have a look at the dedicated tutorial Brief introduction to SVN

Install an Edior

Geany

Geany is a nice development Editor. One feature I like is that it will automaticly recognise python code and list Symbols in a side bar, allowing to jump quickly in your code.

Install it and you can start coding !

Eclispe + pydev

Eclipse with pydev brings an integrated IDE for Python. To run it, you have to do a few steps configuration.


Other

Add you favorite Editor + setup here

Run GRAMPS from the source

Browse the source code

data

src