Skip to content

🐦 A twitter-like web app made using Laravel

Notifications You must be signed in to change notification settings

doougui/parakeet

Repository files navigation

Parakeet

🚀 Setup

💡 To install the required dependencies, you'll need to have NPM and Composer installed in your machine.

To install project dependencies, enter the root folder of your project using the Terminal/CMD and type the following command:

npm install

and then:

composer install

It's important to notice that it's necessary that you have some server capable of executing php scripts and accessing relational databases (mysql or mariadb are the recommended ones for this project). You can use XAMPP, WAMP, LAMP, MAMP or any other server of your choice.

🔛 Initializing the project (dev environment)

Environment

To adjust the correct variables for your local environment, create a copy of the file .env.example and paste as .env inside the project root. Fill this file with the corresponding information concerning your local environment. In the field DB_DATABASE, it's important to notice that you must create a database with the same name of the value filled by you in this variable.

Migrations and seeding

To execute the database migrations, run the following command to create the required tables in your local database:

php artisan migrate 

After that, run the following command to populate your table with fake data:

php artisan db:seed

Local server

Inside the project root, type the following command:

php artisan serve

After that you will be able to access your project in: http://localhost:8000/

📬 License

Feel free to use, test and collaborate. The more contributors, the better.

About

🐦 A twitter-like web app made using Laravel

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages