0
我想將我的Titanium應用添加到VCS。鈦:如何在不暴露密鑰的情況下安全地將`tiapp.xml`添加到VCS
但是,我不想共享任何應該保密的生產密鑰或其他重要內容,因此不應該添加到VCS中。
事情是這樣:
<property name="acs-password-development" type="string">XXXX</property>
<property name="acs-oauth-secret-development" type="string">XXXX</property>
<property name="acs-oauth-key-development" type="string">XXXX</property>
<property name="acs-api-key-development" type="string">XXXX</property>
<property name="acs-authbase-url-development" type="string">https://secure-identity.cloud.appcelerator.com</property>
<property name="acs-base-url-development" type="string">https://api.cloud.appcelerator.com</property>
<property name="acs-username-production" type="string">appc_app_user</property>
<property name="acs-password-production" type="string">XXX</property>
<property name="acs-oauth-secret-production" type="string">XXXX</property>
<property name="acs-oauth-key-production" type="string">XXXX</property>
<property name="acs-api-key-production" type="string">XXXX</property>
<property name="acs-authbase-url-production" type="string">https://secure-identity.cloud.appcelerator.com</property>
<property name="acs-base-url-production" type="string">https://api.cloud.appcelerator.com</property>
<property name="appc-org-id" type="string">XXXX</property>
<property name="appc-creator-user-id" type="string">XXXX</property>
等
(有我錯過了其他重要的東西?)
我將如何處理這個問題?
檢查它dashboard.appcelerator.com。它們應該包含您正在討論的應用程序的密鑰。至於URL,它們對於所有項目都是一樣的,所以我認爲它們可以添加到VCS中。 – Soumya