Sistem Keuangan
Based on Laravel v8
Table of contents
Prerequisites
- PHP (8)
Please install these extensions on your code editor :
- laravel intellisense
Setup
- Clone this Repository:
$ git clone https://github.com/Himalaya-Digital/sistem-keuangan.git
- Copy file
.env.example
to.env
: - Install all package
$ composer install
Running the app
$ php artisan serve
Database setup
...
DB_DATABASE=db_keuangan
DB_USERNAME=root
DB_PASSWORD=
...
- Run this command:
$ php artisan key:generate
$ composer dump-autoload
$ php artisan migrate:fresh --seed
$ php artisan storage:link
Following are the steps that must be taken in the contribution process
- Always pull upstream whenever you want to start developing
$ git pull origin master
- 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!!!