How to add a new project [message #885768] |
Wed, 13 June 2012 10:54  |
Eclipse User |
|
|
|
Hi,
I've just setup my own babel server. But now I have no idea how to add my own project? By default there is only eclipse available. The page map_files.php does not seem to allow to add a new project which is not in the database.
Thanks
Yves
|
|
|
Re: How to add a new project [message #885862 is a reply to message #885768] |
Wed, 13 June 2012 14:26  |
Eclipse User |
|
|
|
Hi Yves,
At Eclipse, Babel takes its project information from Bugzilla, so there is no UI to add new projects.
You can add new projects with SQL queries:
insert into projects set project_id = 'eclipse', is_active = 1 ;
You can then define versions:
insert into project_versions set project_id = "eclipse", version = "3.3", is_active = 1;
insert into project_versions set project_id = "eclipse", version = "3.4", is_active = 1;
You can then define release trains (ie, multiple projects that follow the same release cycle):
insert into release_trains values ('helios', '3.6.0', 1);
insert into release_trains values ('indigo', '3.7.0', 1);
Binding specific versions of a project to a release train (cycle) is then done via the map_files.php UI.
I hope this helps!
|
|
|
Powered by
FUDForum. Page generated in 0.02969 seconds