File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change @@ -36,3 +36,40 @@ You can use the account below for login access
36
36
can only update and delete their own transaction.
37
37
- ### Daily Report
38
38
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
You can’t perform that action at this time.
0 commit comments