This is a small laravel/react/antd application created by the Webtools team to dispaly a list of tasks to a user.
Please extend the application to allow a user to do the following
- Add the ability to categorize and tag the tasks
- Fix any bugs that you notice along the way
- Clone this repo
- Create a new private repo and push to GitHub
- Make changes as required below
- Share with GitHub users
karl-d
andkibbonz
- PHP 8.3 or higher installed on the machine
- Setup the SQLITE DB
- Create the DB
touch database/database.sqlite
- Update DB_DATABASE in the .env file to
<ABSOLUTE_PATH>/database/database.sqlite
- Create the DB
composer install
php artisan migrate --seed
php artisan serve
(Run the dev server)
- Node 20 or higher installed on the machine
npm install
npm run dev
(Run the dev server)