Galaxy deployment DEPLOY_HOSTNAME is not recognized

Hi,on Win, I a trying to deploy to galaxy following the instructions and i get:

DEPLOY_HOSTNAME=galaxy.meteor.com meteor deploy dev.mydomain --settings settings.json
’DEPLOY_HOSTNAME’ is not recognized as an internal or external command,
operable program or batch file.
Thanks for your help.

1 Like

Yeah - that’s linux/osx style. You should try:

set DEPLOY_HOSTNAME="galaxy.meteor.com"
meteor deploy dev.mydomain --settings settings.json
1 Like

Great, thanks.
Now I get:
Error deploying application: Connection error (Invalid URI “https:///%22galaxy.meteor.com%22/info/dev.mydomain”)

Hmm. The quotes appear to have been encoded into the URI. So, try:

set DEPLOY_HOSTNAME=galaxy.meteor.com
meteor deploy dev.mydomain --settings settings.json
3 Likes

Seems to work this way. Many thanks !

thanks. and that SET command is executed first separately.