DEV Community

Alice Hunter
Alice Hunter

Posted on

TwilioHackathon - The First issue

Apparently didn't have HyperV installed which means no vagrant therefore no homestead q.q

Fixed with an annoying reboot of windows

Update 1

After installing HyperV it came time to mess around with the Homestead configuration, in Hyper-V manager I created a bridged switch called "Bridge"

I also had to create a local use for SMB shares so that the code can be seen by the Vagrant/homestead VM.

This is my current Homestead configuration

---
networks:
    - type: "public_network"
      bridge: "Bridge"
memory: 2048
cpus: 2
provider: hyperv
backup: true

authorize: ~/.ssh/id_rsa.pub

keys:
    - ~/.ssh/id_rsa

folders:
    - map: E:\clients\Internal\HackaThon2020\www
      to: /home/vagrant/code

sites:
    - map: homestead.test
      to: /home/vagrant/code/public
      schedule: true
      php: "7.4"

databases:
    - homestead
    - stackcoms

features:
    - elasticsearch: true
    - golang: true
    - mariadb: true
    - minio: true
    - ohmyzsh: true
    - webdriver: false
    - mongodb: true
    - python: true
    - rabbitmq: true

It now works and the "share" command is running ngrok tunnels so I can move onto actually making the backend now :)

https://www.twitch.tv/alicetheawoo

Top comments (0)