RediatBrook / TweetyReety

A Twitter clone made with Laravel

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TweetyReety

A twitter clone made with Laravel

Installing Dependencies and Local setup

First install composer. Then, run:

composer global require laravel/installer

laravel new example-app

cd example-app

php artisan serve

Copy the .env.example file to a .env file within the example-app directory. What the tilda is depends on where you saved the file.

cp ~/example-app/.env.example ~/example-app/.env

Change the .env file to fit your specific configuration. (I.e. local SQL database username, password, etc...)

DB_CONNECTION=mysql (You can change this to PostgreSQL or any other preferred DBMS)
DB_HOST=127.0.0.1 (This is localhost, but you cant change it if you want)
DB_PORT=3306(You can change this to your port of preference)
DB_DATABASE=tweetyreety
DB_USERNAME="YourSQLDBUsername"
DB_PASSWORD="YourSQLDBPassword"

Make the new example-app your current directory, then run:

php artisan migrate

What it looks like

The Timeline

Screenshot 2021-10-08 at 11-07-13 TweetyReety

My Profile

Screenshot 2021-11-08 at 13-33-26 TweetyReety

Edit Profile

Screenshot 2021-11-08 at 13-34-59 TweetyReety

Explore

Screenshot 2021-11-08 at 13-36-33 TweetyReety

Login

Screenshot 2021-11-08 at 13-38-17 TweetyReety

Register

Screenshot 2021-11-08 at 13-38-03 TweetyReety

About

A Twitter clone made with Laravel


Languages

Language:PHP 73.6%Language:Blade 25.3%Language:Shell 0.6%Language:Vue 0.4%