This is a realtime chat app.
- Clone the repository
git clone https://github.com/juborajnaofel/laravel-vue-chat.git
- Open the command prompt and switch to the repository folder
cd laravel-vue-chat
- Copy the example env file and make the required configuration changes in the .env file
cp .env.example .env
- Install all the dependencies using composer
composer install
- Generate a new application key
php artisan key:generate
- Run the database migrations
php artisan migrate
- Install node dependencies
npm install
- Start the server dev server for frontend
npm run dev
- Start the backend server
php artisan serve