Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jonaspaq/chatapp

Simple Person to Person Chat App using Laravel and jQuery Ajax
https://github.com/jonaspaq/chatapp

bootstrap4 chat composer jquery laravel laravel-framework

Last synced: 17 days ago
JSON representation

Simple Person to Person Chat App using Laravel and jQuery Ajax

Awesome Lists containing this project

README

        

# Chat App
Chat app is an application where users can message each other.
This is a person to person chat application.

## Installation
Clone this repository.
```
git clone https://github.com/jonaspaq/chatapp.git
```

Install composer dependencies in root directory of this project:
```
composer install -n --prefer-dist
```

Copy .env:
```
cp .env.example .env
```

Generate app key:
```
php artisan key:generate
```

Modify .env file to your preferred configuration:
> Note: Configuration may vary. You may use PostgreSQL or MySQL or depends on what you like.

Run migration:
```
php artisan migrate
```

## Usage
To serve the project:
```
php artisan serve
```

Open http://localhost:8000 in your browser.

## Tools Used
- [Laravel](https://laravel.com/)
- [jQuery](https://jquery.com/)
- [Bootstrap 4](https://getbootstrap.com/)