Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

PHP

Can't find the sites folder on my Vagrant box

So.

I've gone through the installation process, and have ssh'd into my box, however, there doesn't seem to be anything there. This is what happens when I run the ls command:

vagrant@homestead:~$ ls vagrant@homestead:~$

Nothing. Zero. Zip. Nada.

Here's my yaml file for reference:

ip: "192.168.10.10"
memory: 2048
cpus: 1
provider: virtualbox

authorize: ~/Users/paulcook/.ssh/github_rsa.pub

keys:
    - ~/Users/paulcook/.ssh/github_rsa

folders:
    - map: ~/Users/paulcook/Homestead/Projects
      to: /home/vagrant/Sites

sites:
    - map: laravel.dev
      to: /home/vagrant/Sites/laravel-basics/public

databases:
    - homestead

variables:
    - key: APP_ENV
      value: local

# blackfire:
#     - id: foo
#       token: bar
#       client-id: foo
#       client-token: bar

# ports:
#     - send: 93000
#       to: 9300
#     - send: 7777
#       to: 777
#       protocol: udp

Any help is appreciated