Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/jonaspaq/chatapp
- Owner: jonaspaq
- Created: 2019-07-23T09:19:27.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-02-02T07:15:16.000Z (almost 2 years ago)
- Last Synced: 2024-11-05T09:29:42.212Z (2 months ago)
- Topics: bootstrap4, chat, composer, jquery, laravel, laravel-framework
- Language: PHP
- Homepage:
- Size: 2.07 MB
- Stars: 2
- Watchers: 0
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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/)