- open an Ubuntu terminal
- make sure you're in your home directory, where you've hopefully already created a projects folder:
cd ~/projects
- make sure you have docker desktop running
- make sure you're in your home directory, where you've hopefully already created a projects folder:
- clone this repo:
git clone [email protected]:csci-2479-sp-2022/tabletop-nerds.git
- go into the project:
cd tabletop-nerds
- copy the
.env.example
file to.env
- run the following docker command to install our Sail dependencies:
docker run --rm \
-u "$(id -u):$(id -g)" \
-v $(pwd):/var/www/html \
-w /var/www/html \
laravelsail/php81-composer:latest \
composer install --ignore-platform-reqs
- create app key:
./vendor/bin/sail artisan key:generate
- start up the app:
./vendor/bin/sail up -d