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

https://github.com/devriazul/twitter_clone_laravel


https://github.com/devriazul/twitter_clone_laravel

Last synced: 6 months ago
JSON representation

Awesome Lists containing this project

README

          

## Laravel Twitter Clone

### Prerequisites
* [Docker](https://www.docker.com/)

### Installation

#### Build and start Docker services

```bash
docker-compose up --build -d
```

#### Connect to php-fpm (app) container

```bash
docker-compose exec app sh
```

#### Copy .env file

```bash
cp .env.example .env
```

#### Install the dependencies

```bash
composer install
```

#### Run the database migration and seeder (if needed)

```bash
php artisan migrate --seed
```

#### Run the tests

```bash
bin/phpunit
```
# twitter_clone_laravel