All Projects → neoighodaro-articles → Trello Clone Vue Laravel

neoighodaro-articles / Trello Clone Vue Laravel

This is a Trello clone built using Laravel and Vue. You can read about how it was created in the series.

Projects that are alternatives of or similar to Trello Clone Vue Laravel

Webhook.site
⚓️ Easily test HTTP webhooks with this handy tool that displays requests instantly.
Stars: ✭ 2,842 (+3129.55%)
Mutual labels:  laravel, pusher
Mercurius
Real-time Messenger for Laravel
Stars: ✭ 309 (+251.14%)
Mutual labels:  laravel, pusher
Laravel Realtime Example
Realtime 🍕 Pizza Order Tracker 🍕 - Laravel, Vue & Pusher
Stars: ✭ 165 (+87.5%)
Mutual labels:  laravel, pusher
Dashboard.spatie.be
The source code of dashboard.spatie.be
Stars: ✭ 1,916 (+2077.27%)
Mutual labels:  laravel, pusher
Chatify
A Laravel package that allows you to add a complete user messaging system into your new/existing Laravel application.
Stars: ✭ 885 (+905.68%)
Mutual labels:  laravel, pusher
Laravel Websockets
Websockets for Laravel. Done right.
Stars: ✭ 4,157 (+4623.86%)
Mutual labels:  laravel, pusher
Laravel Websockets Demo
Demo application to use with the Laravel WebSockets package.
Stars: ✭ 286 (+225%)
Mutual labels:  laravel, pusher
Lynnhosting
Open Source, Web Hosting Automation built with Laravel
Stars: ✭ 36 (-59.09%)
Mutual labels:  laravel, pusher
Laravel Vue Boilerplate
🐘 A Laravel 6 SPA boilerplate with a users CRUD using Vue.js 2.6, GraphQL, Bootstrap 4, TypeScript, Sass, and Pug.
Stars: ✭ 472 (+436.36%)
Mutual labels:  laravel, pusher
Pusher Http Laravel
[DEPRECATED] A Pusher Channels bridge for Laravel
Stars: ✭ 410 (+365.91%)
Mutual labels:  laravel, pusher
Pusher Chatkit Laravel
Laravel wrapper for the Chatkit PHP SDK. ChatKit is shutting down 😕 - https://blog.pusher.com/narrowing-our-product-focus
Stars: ✭ 21 (-76.14%)
Mutual labels:  laravel, pusher
Laravel 5 Messenger
A Simple Laravel 5, 6, 7 & 8 Messenger with Pusher Capabilities
Stars: ✭ 75 (-14.77%)
Mutual labels:  laravel, pusher
Rating
rating system for laravel 5
Stars: ✭ 85 (-3.41%)
Mutual labels:  laravel
Laravel Woocommerce
WooCommerce Rest API for Laravel
Stars: ✭ 86 (-2.27%)
Mutual labels:  laravel
Laravel Fb Messenger
Laravel Facebook Messenger Provider
Stars: ✭ 85 (-3.41%)
Mutual labels:  laravel
Circleci Demo Php Laravel
Example CircleCI project using PHP and Laravel
Stars: ✭ 85 (-3.41%)
Mutual labels:  laravel
Laravel Facebook Ads
Facebook & Instagram Ads API for Laravel
Stars: ✭ 87 (-1.14%)
Mutual labels:  laravel
Zipcode
Zip code searcher
Stars: ✭ 86 (-2.27%)
Mutual labels:  laravel
Bigbluebutton
Package that provides easily communicate between bigbluebutton server and laravel framework
Stars: ✭ 85 (-3.41%)
Mutual labels:  laravel
Weixin
[READ ONLY] Subtree split of the SocialiteProviders/Weixin Provider (see SocialiteProviders/Providers)
Stars: ✭ 84 (-4.55%)
Mutual labels:  laravel

Building a Trello Clone using Laravel and Vue

This is a demo application showing how to build a simple trello clone using Laravel and Vue. You can read about how it was created on Pusher's blog.

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.

Prerequisites

What things you need to install the software.

  • Git.
  • PHP.
  • Composer.
  • Laravel CLI.
  • Laravel Valet (optional).
  • A webserver like Nginx or Apache.
  • A Node Package Manager ( npm or yarn ).

Install

Clone the git repository on your computer

$ git clone https://github.com/neoighodaro-articles/trello-clone-vue-laravel.git

You can also download the entire repository as a zip file and unpack in on your computer if you do not have git

After cloning the application, you need to install it's dependencies.

$ cd trello-clone-vue-laravel
$ composer install

Setup

  • When you are done with installation, copy the .env.example file to .env
$ cp .env.example .env
  • Generate the application key
$ php artisan key:generate
  • Add your database credentials to the necessary env fields

  • Migrate the application

$ php artisan migrate
  • Seed Database
php artisan db:seed
  • Install Passport
$ php artisan passport:install
  • Install node modules
$ npm install

Run the application

$ php artisan serve

Built With

  • Laravel - The PHP framework for building the API endpoints needed for the application
  • Vue - The Progressive JavaScript Framework for building interactive interfaces

Acknowledgments

  • Laravel - The excellent documentation explaining how to get started with Laravel and Laravel Passport made it easy to provide a step by step guide for beginners to follow the application
  • Vue - Concise documentation
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].