A simple task management app
Clone the project repository by running the command below if you use SSH
git clone [email protected]:ammezie/tasksman.gitIf you use https, use this instead
git clone https://github.com/ammezie/tasksman.gitAfter cloning, run:
composer installnpm installDuplicate .env.example and rename it .env
Then run:
php artisan key:generateBe sure to fill in your database details in your .env file before running the migrations:
php artisan migrateAnd finally, start the application:
php artisan serveand visit http://localhost:8000 to see the application in action.