Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/engsahaly/starter_project_for_realtime
Starter project for realtime course on Udemy
https://github.com/engsahaly/starter_project_for_realtime
broadcast-reciever broadcaster broadcasting laravel laravel-framework laravel-package laravelecho notification notifications pusher pusher-channels pusherjs realtime realtime-database websocket websockets
Last synced: about 15 hours ago
JSON representation
Starter project for realtime course on Udemy
- Host: GitHub
- URL: https://github.com/engsahaly/starter_project_for_realtime
- Owner: engsahaly
- Created: 2023-11-02T05:18:38.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-11-21T20:31:07.000Z (about 1 year ago)
- Last Synced: 2024-11-10T04:37:17.731Z (about 2 months ago)
- Topics: broadcast-reciever, broadcaster, broadcasting, laravel, laravel-framework, laravel-package, laravelecho, notification, notifications, pusher, pusher-channels, pusherjs, realtime, realtime-database, websocket, websockets
- Language: CSS
- Homepage: https://www.udemy.com/course/laravel-real-time-guide-pusher-websockets-echo-and-more/?referralCode=8FE70694ED15CD82909C
- Size: 1.61 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Starter project for realtime course on Udemy
**Created By :** Mahmoud Anwar
**Email :** [email protected]This is the main readme file for this starter project to use as initial starting point fro realtime course on Udemy
## Installation
To get started, clone this repository.
```
git clone https://github.com/engsahaly/starter_project_for_realtime.git
```Next, copy your `.env.example` file as `.env` and configure your Database connection.
```
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=YOUR-DATABASE-NAME
DB_USERNAME=YOUR-DATABASE-USERNAME
DB_PASSWORD=YOUR-DATABASE-PASSWROD
```## Run Packages and helpers
You have to all used packages and load helpers as below.
```
composer install
npm install
npm run build
```## Generate new application key
You have to generate new application key as below.
```
php artisan key:generate
```## Run Migrations and Seeders
You have to run all the migration files included with the project and also run seeders as below.
```
php artisan migrate
php artisan db:seed
```## Accessing Admin Panel
You can access admin login page using this url.
```
http://localhost:8000/admin/login
Email: [email protected]
Password: 123456789
```