在 odoo 应用程序商店中添加 github public 存储库
Add github public repository on odoo app store
我在 git-hub 上有我的 public 存储库,我想在 Odoo 应用商店中添加这个存储库,有什么方法可以做到这一点。??
我在 Google 上搜索,但没有找到任何方法。
有些文章表明存储库应该是私有的。
如果有人有任何解决方案,请分享..
您的存储库不必是私有的就可以将其提交到 Odoo 应用程序商店,但是对于专有(付费)插件使用私有存储库是有意义的。
要将您的应用或主题上传到 Odoo 应用商店,您需要在 Odoo.com and go to the App Upload 页面上 register/login。您需要按照以下格式指定 Git 存储库的 URL:
git@github.com:<username>/<repo>.git#<branch>
请确保:
- There is one folder per App/Theme at the root of the repository.
- You specify the branch name of your Git repository by adding
#branch_name
at the end of the repo URL.
- The branch name exactly matches the series name for which your modules are meant, so
#8.0
for version 8.0.
添加存储库后,您可以扫描它以查找 Odoo addons/themes。
如果您的存储库是私有的(例如专有插件),FAQ:
To publish your modules on our platform, we need to be allowed to read
from your repository. If you are on Github, you can simply authorize
our online-odoo user on your repository. If you are on Bitbucket, you
can authorize our OdooApps user. If you use another service, you will
need to authorize our public SSH key instead. Don't forget to use the
SSH url of your repository when registering it to allow us to identify
using ssh. For example for GitHub, it would be something like
git@github.com:odoo/odoo#9.0
.
我在 git-hub 上有我的 public 存储库,我想在 Odoo 应用商店中添加这个存储库,有什么方法可以做到这一点。??
我在 Google 上搜索,但没有找到任何方法。
有些文章表明存储库应该是私有的。 如果有人有任何解决方案,请分享..
您的存储库不必是私有的就可以将其提交到 Odoo 应用程序商店,但是对于专有(付费)插件使用私有存储库是有意义的。
要将您的应用或主题上传到 Odoo 应用商店,您需要在 Odoo.com and go to the App Upload 页面上 register/login。您需要按照以下格式指定 Git 存储库的 URL:
git@github.com:<username>/<repo>.git#<branch>
请确保:
- There is one folder per App/Theme at the root of the repository.
- You specify the branch name of your Git repository by adding
#branch_name
at the end of the repo URL.- The branch name exactly matches the series name for which your modules are meant, so
#8.0
for version 8.0.
添加存储库后,您可以扫描它以查找 Odoo addons/themes。
如果您的存储库是私有的(例如专有插件),FAQ:
To publish your modules on our platform, we need to be allowed to read from your repository. If you are on Github, you can simply authorize our online-odoo user on your repository. If you are on Bitbucket, you can authorize our OdooApps user. If you use another service, you will need to authorize our public SSH key instead. Don't forget to use the SSH url of your repository when registering it to allow us to identify using ssh. For example for GitHub, it would be something like
git@github.com:odoo/odoo#9.0
.