A very minimal web based scrum board. Aims to replace the outdated scrum-board.
- Begin by cloning this repository to your machine, and installing all Composer & NPM dependencies.
git clone git@github.com:chefe/board.git
cd board && composer install && npm install
cp .env.example .env
php artisan key:generate
npm run dev
- Next, configure your database credentials in in the
.env
file. - After that, you can migrate the database with the command
php artisan migrate
. - Start the websocket server with the command
php artisan websocket:serve
- Boot up a server with the command
php artisan serve
(or use a real server) - Finally you can visit the application in your browser.