Based on Laravel v9 Admin template used Mazer
- PHP ≥ 8
Please install these extensions on your code editor :
- Fork This Repository
- Clone Your Fork Repository:
$ git clone https://github.com/(your username)/market-management-program.git
- Add Upstream to the Clone Result
$ git remote add upstream https://github.com/hihi-production/market-management-program.git
- Copy file
.env.example
to.env
:
$ cp env-example .env
- Install all package
$ composer install
...
DB_DATABASE=db_market
DB_USERNAME=root
DB_PASSWORD=
...
- Run this command:
$ php artisan key:generate
$ composer dump-autoload
$ php artisan migrate:fresh --seed
$ php artisan storage:link
$ php artisan serve
- Always pull upstream whenever you want to start developing
$ git pull upstream main
- Create a new branch for each developed feature. Example:
$ git branch feature/add-login // Contoh saat membuat branch untuk fitur baru
$ git branch bug/fix-menu // Contoh saat membuat branch untuk fix bug
- If your work already done, push to the repo of your fork
$ git push origin {nama-branch}
- Ganbatte!!!
The Laravel framework is open-sourced software licensed under the MIT license.