A simple task management app
Clone the project repository by running the command below if you use SSH
git clone [email protected]:ammezie/tasksman.git
If you use https, use this instead
git clone https://github.com/ammezie/tasksman.git
After cloning, run:
composer install
npm install
Duplicate .env.example
and rename it .env
Then run:
php artisan key:generate
Be sure to fill in your database details in your .env
file before running the migrations:
php artisan migrate
And finally, start the application:
php artisan serve
and visit https://localhost:8000 to see the application in action.
- Laravel - The PHP Framework For Web Artisans
- React - A JavaScript library for building user interfaces
- install composer
- install php v7.4.33
- nvm install 7.10.1
- nvm use 7.10.1
- composer config -g -- disable-tls true
- composer update
- composer install
- php artisan key:generate
- uncomment ;extension=pdo_mysql.so in php.ini
- php artisan migrate
- php artisan db:seed
- php artisan serve