Skip to content

Instantly share code, notes, and snippets.

View musavirchukkan's full-sized avatar
💻

Abdul Musavir Chukkan musavirchukkan

💻
View GitHub Profile
Contact Me For Your Projects :)
Telegram: https://t.me/LinuxGun
WhatsApp: https://wa.link/5ow7oz
#!/bin/bash
# This will remove Apache
sudo service apache2 stop
sudo apt-get purge apache2 apache2-utils apache2.2-bin
@musavirchukkan
musavirchukkan / gist:bdeac410aa29dff0badee6d57afb39ea
Created September 7, 2023 16:25
steps to start a cloned laravel project
1.Run git clone <my-cool-project>
2.Run composer install
3.Run cp .env.example .env
4.Run php artisan key:generate
5.Run php artisan migrate
6.Run php artisan serve
7.Go to link localhost:8000