Skip to content

Commit 9fb62fa

Browse files
committed
Update README
1 parent aa97a88 commit 9fb62fa

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

README.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,40 @@ You can use the account below for login access
3636
can only update and delete their own transaction.
3737
- ### Daily Report
3838
just like it name, operators can see daily reports here.
39+
40+
## 🧪 Database Structure
41+
42+
![Database](https://cdn.discordapp.com/attachments/946013429200723989/951855735157960754/drawSQL-export-2022-03-11_21_53.png)
43+
44+
## 🛠️ Development
45+
46+
```
47+
# Clone the project
48+
$ git clone https://github.com/BayuDC/warnetku.git
49+
$ cd warnetku
50+
51+
# Install dependencies
52+
$ composer install
53+
54+
# Create env file
55+
$ cp .env.example .env
56+
57+
# Set all required variables
58+
$ nano .env
59+
# or using your favorite text editor
60+
61+
# Generate encryption key
62+
$ php artisan key:generate
63+
64+
# Database migration
65+
$ php aritsan migrate
66+
# with seed
67+
$ php artisan migrate --seed
68+
69+
$ Run dev server
70+
$ php artisan serve
71+
```
72+
73+
## 📝 Todo
74+
75+
- Refactor, there are so many inefficient and repetitive code

0 commit comments

Comments
 (0)