- Composer.
- Node JS (Optional).
- Code editor for doing coding activities Visual Studio Code or Sublime or Atom.
- Php and Web server for running laravel in web browser, can use XAMPP or Laragon.
- Database Management System.
Because it uses Laravel migrations feature it can use any type of DBMS as long as it's a Relational Database.
- Clone repository with the command
git clone https://github.com/rdp77/veyaz.git
- Installing package form Composer with command
composer install
- Installing package module node js with command
node install
(Optional) - Running web application using commands
php artisan serve
or running manually with web server.
Copy the .env.example
file then change the name to .env
, then adjust the settings with the database you want to connect to so that it is connected to the desired database, like the example below.
DB_CONNECTION=mysql //Driver Database
DB_HOST=127.0.0.1 //Host
DB_PORT=3306 //Port
DB_DATABASE=database //Name Database
DB_USERNAME=root //Username
DB_PASSWORD= //Password
If the key in .env is empty run this command to generate a key php artisan key:generate
Run the migrations database to import all databases using the command php artisan migrate:refresh --seed
Login using username admin
and password admin
This template uses several libraries as helpers to improve the template, and can be seen here
In order to ensure that the Laravel community is welcoming to all, please review and abide by the Code of Conduct or veyaz Code of Conduct.
If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell via [email protected]. All security vulnerabilities will be promptly addressed.
The Laravel framework is open-sourced software licensed under the MIT license, and veyaz under the GPL-3.0