The Main Server side to interact with the Interviewing Client-side App
And Support Fully Admin panel to keep tracking the business needs easily.
- PHP 8.1
- apache OR Xampp OR Nginx
- mysql 8
Here is a documentation to contribution guide
- Clone the Current Repository
- run
cp .env.example .env - Ensure creating new database in your local mysql
- set your database keys in the .env file
DB_DATABASE=DATABASE_NAME
DB_USERNAME=DATABASE_USER_NAME
DB_PASSWORD=DATABASE_PASSWORD- then run the next commands
composer installphp artisan key:generatephp artisan migratephp artisan serveNote
when run the serve command will register the server to the localhost and the port 8000.
to change it you can pass the --port option to the command
Example:
php artisan serve --port=7070