-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fetch kintone space settings #2
Comments
前者は、この二択かな。
後者は、boolean型の —all-apps みたいなオプション用意して |
スペース内アプリの一括取得は |
これ、再検討始める。 module.exports = {
location: 'kintone-settings',
env: {
development: {
domain: 'example2.cybozu.com',
space: {
id: 32,
partial: true,
},
app: {
order: 1024,
billing: 2048,
},
},
},
production: {
domain: 'example1.cybozu.com',
space: {
id: 5,
partial: false, // default、省略可
exclude: [789],
},
app: {
order: 123,
billing: 456,
},
},
} 各 上の方で検討してた「スペースIDをフォルダ名にする云々」は、 デフォルトはスペース内の全アプリを取得。 オプション オプション これで、スペース内に新アプリを作ったときのpull漏れがなくなるはず。 |
現状アプリごとの設定しか取れていないが、
スペースごとの設定も取れるようにしたい。
スペース本文にマニュアル書いたりアプリへのリンク貼ったりすることも多いので。
https://developer.cybozu.io/hc/ja/articles/202166200
問題は、ディレクトリ構成をどうするか。
スペース使わずにアプリ情報だけを取りたい場合もあるので、
変に複雑にして既存の使い方ができなくなるのは困る。
既存の使い方が維持できることは必須。その上でどうすべきか?
The text was updated successfully, but these errors were encountered: