Nicole H
Just a note, I had to add an .htaccess file to my public folder to allow this to work, this is a composer requirement I believe (probably depends on server) but in case anyone else needs, the .htaccess looks like:
<ifmodule mod_rewrite.c="">
<ifmodule mod_negotiation.c="">
Options -MultiViews
</ifmodule>
RewriteEngine On
# Redirect Trailing Slashes…
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller…
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
</ifmodule>