开发者

How best to share a QooXDoo using Git?

开发者 https://www.devze.com 2022-12-21 06:37 出处:网络
I\'m developing 开发者_如何学编程a little project with QooXDoo and want to share the source with some friends. Should I just check in the whole project folder?You should add the build and cache direct

I'm developing 开发者_如何学编程a little project with QooXDoo and want to share the source with some friends. Should I just check in the whole project folder?


You should add the build and cache directories to the relevant .gitignore files (these directories they are the equivalent of 'object' files, so they should not be stored in version control unless you have a very good reason).

As for Qooxdoo itself, I usually place it next to the project so it's easy to duplicate the setup. I end up with something like this

/
    tmp
        qooxdoo-sdk-xxx
        my-app-directory

HTH


I guess the best approach would be to just check in your application and a little instruction file how to setup a qooxdoo SDK.

This way the developers can work with your application locally and using a qooxdoo SDK to work against.

As long as you do not need to work against the current trunk it's better to work with the latest SDK. See the download page at qooxdoo.org


you may want to have a look at remOcular a qooxdoo frontend with perl backend, complete with autoconf setup.

0

精彩评论

暂无评论...
验证码 换一张
取 消