https://github.com/devriazul/twitter_clone_laravel
https://github.com/devriazul/twitter_clone_laravel
Last synced: 6 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/devriazul/twitter_clone_laravel
- Owner: devriazul
- Created: 2021-10-31T18:31:32.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-02-01T21:47:35.000Z (about 3 years ago)
- Last Synced: 2025-01-09T20:37:46.669Z (over 1 year ago)
- Language: PHP
- Size: 1.12 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
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