/birdboard-crs

A team project board view, much like Trello, Slack, Asana, or any other

Primary LanguagePHP

Birdboard

Build Status Total Downloads Latest Stable Version License

A trello like webapp using Laravel as the framework and MySQL for the database

Install locally

Clone this repo to your machine

git clone https://github.com/danivideda/birdboard-crs.git

install dependencies :

composer install
npm install

Create the .env file and setup the database from your local machine (I've used my own database using MySQL)

cp .env.example .env

Generate new key in .env

php artisan key:generate

Migrate to create the database table

php artisan migrate

Run it

php artisan serve