https://github.com/dilan032/task-management-web-system
https://github.com/dilan032/task-management-web-system
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dilan032/task-management-web-system
- Owner: Dilan032
- Created: 2024-09-12T04:10:49.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-09-28T08:20:13.000Z (8 months ago)
- Last Synced: 2024-10-23T07:48:59.213Z (7 months ago)
- Language: Blade
- Size: 27.5 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Deploy Web Application
## Install Dependencies:
- For PHP dependencies `composer install`
- For Node.js dependencies `npm install`
## Generate the Application Key:
`php artisan key:generate`
## Configure the Environment:
- Open the .env file and configure your database
- configure your Email Details
## Run Database Migrations:
> [!WARNING]
> First you need to migrate the bank table. Then migrate the rest.
> Run the following two codes one after the other.
- `php artisan migrate --path=/database/migrations/2024_07_26_043735_create_institutes_table.php`
- `php artisan migrate `
## Run Database Seeders to add main super admin
- `php artisan db:seed`
## Super Admin Details
user name : super admin
user email : [email protected]
user password : 12345678
## Start Laravel Development Server:
- `php artisan serve`