Open c4lliope opened 5 years ago
The script/setup
isn't in the best shape 😕 Theres room for a ton of improvement! Any contributions are welcome 🙌
To ensure your PR's merge ASAP, keep them as small as possible so we can review them incrementally. Theres a sizeable PR backlog rn and it's easier for us to merge any low hanging fruit.
Another hiccup will pop up when you use the docker-machine
VirtualBox driver.
You need to forward ports from the VM to your localhost
machine, with something like:
VBoxManage modifyvm "vbox" --natpf1 "tcp-port9227,tcp,,9227,,9227";
VBoxManage modifyvm "vbox" --natpf1 "udp-port9227,udp,,9227,,9227";
VBoxManage modifyvm "vbox" --natpf1 "tcp-port9337,tcp,,9337,,9337";
VBoxManage modifyvm "vbox" --natpf1 "udp-port9337,udp,,9337,,9337";
VBoxManage modifyvm "vbox" --natpf1 "tcp-port22322,tcp,,22322,,22322";
VBoxManage modifyvm "vbox" --natpf1 "udp-port22322,udp,,22322,,22322";
VBoxManage modifyvm "vbox" --natpf1 "tcp-port2345,tcp,,2345,,2345";
VBoxManage modifyvm "vbox" --natpf1 "udp-port2345,udp,,2345,,2345";
VBoxManage modifyvm "vbox" --natpf1 "tcp-port9736,tcp,,9736,,9736";
VBoxManage modifyvm "vbox" --natpf1 "udp-port9736,udp,,9736,,9736";
@BenEmdon thanks! I'll keep that in mind. Maybe this issue can serve more as documentation than a merge-able commit, because I'm new to the GitHub "one script to rule them all" policy.
This issue has been automatically marked as stale because it has not had recent activity. Thank you for your contributions.
Describe the bug Running the script to set the project up on my macintosh computer, I hit a number of errors.
I was hoping to start in on #1802, but the
script/setup
process has ended up overwhelming the work day.Here is what I am working with so far:
Brewfile
:~/.config/fish/config.fish
:script/bootstrap
:work more predictably after the
brew bundle check
block, not before.If I get this up and running tomorrow, I'll work to open a pull request with these changes.
Thanks!