A simple task board made with the Laravel framework using what was learned in my class.
The main focus of this project is mostly the backend rather than the frontend, hence why the '/home' route is the only one with visual modifications.
- User creation with login/logout
- Create boards
- Create tasks within those boards
- Boards and tasks belong to the user that created them
- Everything is pushed and pulled to/from a SQL database
- PHP 7.4.25
- Laravel Framework 8.83.27
- Laravel UI 3.4.6 with Bootstrap Auth
- npm 8.19.2
Clone the project or download the files
git clone https://github.com/oli-moreau/laravel-task-board.git
Install the dependencies
composer install && npm install
Copy the '.env.example' file
cp .env.example .env
Create a database, edit the '.env' file with the required information & migrate:
php artisan migrate
Generate the project key
php artisan key:generate
Run the project
php artisan serve