Laravel Social Media Website built with Inertia Vue.js. The project was created during the following 48 hours YouTube Playlist YouTube Tutorial.
The application is deployed on the following domain laravel-space.com
git clone https://github.com/thecodeholic/laravel-social-media-website.git
Navigate into project folder using terminal and run
docker run --rm \
-u "$(id -u):$(id -g)" \
-v "$(pwd):/var/www/html" \
-w /var/www/html \
laravelsail/php83-composer:latest \
composer install --ignore-platform-reqs
cp .env.example .env
./vendor/bin/sail up -d
From now on whenever you want to run artisan command you should do this from the container.
Access to the docker container
./vendor/bin/sail bash
php artisan key:generate --ansi
php artisan migrate