2016-05-30 14 views
0

Die Datei tiapp.xml enthält Schlüssel für Produktions- und Entwicklungsumgebungen.Test Appcelerator arrowdb Produktionsumgebung, wie mache ich das?

Ich denke, ich könnte kopieren/einfügen und stopfen dort, um zu wechseln, aber ist es ein einfacher Weg, um die Produktionsumgebung zu testen? Wie ein Tag in der XML-Datei wie "production = true" oder so?

+0

Einfach kopieren/einfügen es in der tiapp.xml für jetzt ... funktioniert. Aber hässlich. – Emil

Antwort

0

Ihre tiapp.xml aussehen sollte etwas:

<property name="appc-app-id" type="string">123</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-oauth-secret-development" type="string">123</property> 
<property name="acs-oauth-key-development" type="string">123</property> 
<property name="acs-api-key-development" type="string">123</property> 
<property name="acs-username-development" type="string">appc_app_user_dev</property> 
<property name="acs-password-development" type="string">123</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="acs-oauth-secret-production" type="string">123</property> 
<property name="acs-oauth-key-production" type="string">123</property> 
<property name="acs-api-key-production" type="string">123</property> 
<property name="acs-username-production" type="string">appc_app_user</property> 
<property name="acs-password-production" type="string">123</property> 
<property name="appc-org-id" type="string">123</property> 
<property name="appc-creator-user-id" type="string">123</property> 

Wie Sie die -development und -production Suffix bestimmen sehen kann, wird die Umwelt es wert verwendet werden. Sie können auch das Suffix weglassen, um es in allen Umgebungen zu verwenden.

+1

Ja, ich habe gerade die Produktionsschlüssel in die Entwicklung kopiert, um sie zu testen. Aber ich frage mich, ob es einen einfacheren Weg gibt wie "development = true" oder so etwas ... – Emil

+2

Wenn Sie Ihre App erstellen, verwenden Sie '--deploy-type development', um die Entwicklung zu erzwingen oder' --deploy-type production' um die Produktion zu erzwingen . –