You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i need to add my domain to all this files ?
"compose/proxy.yaml"
"compose/backend.yaml"
"compose/app.yaml"
"config/trading-ui.env"
"compose/cryptonodes.yaml"
"config/integration/fixtures/barong.json"
"config/integration/fixtures/peatio.json"
"config/peatio.env"
"config/barong.env"
"config/barong/seeds.yml"
"config/toolbox.yaml"
?
Replace domain
Set $new_domain variable equal to your domain and run bash script:
I follow this instruction https://github.com/rubykube/workbench/wiki/DigitalOcean-Installation
And i can not find the place to add my domain ;)
i need to add my domain to all this files ?
"compose/proxy.yaml"
"compose/backend.yaml"
"compose/app.yaml"
"config/trading-ui.env"
"compose/cryptonodes.yaml"
"config/integration/fixtures/barong.json"
"config/integration/fixtures/peatio.json"
"config/peatio.env"
"config/barong.env"
"config/barong/seeds.yml"
"config/toolbox.yaml"
?
Replace domain
Set $new_domain variable equal to your domain and run bash script:
#!/bin/bash
old_domain="wb.local"
new_domain="your.domain"
files=(
"compose/proxy.yaml"
"compose/backend.yaml"
"compose/app.yaml"
"config/trading-ui.env"
"compose/cryptonodes.yaml"
"config/integration/fixtures/barong.json"
"config/integration/fixtures/peatio.json"
"config/peatio.env"
"config/barong.env"
"config/barong/seeds.yml"
"config/toolbox.yaml"
)
for file in ${files[@]}; do
sed -i "s/${old_domain}/${new_domain}/g" ${file}
done
Thanks for your help
The text was updated successfully, but these errors were encountered: