lapeh 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +3 -3
- package/readme.md +5 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lapeh",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Framework API Express yang siap pakai (Standardized)",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"prisma",
|
|
35
35
|
"lapeh-cli"
|
|
36
36
|
],
|
|
37
|
-
"author": "",
|
|
38
|
-
"license": "
|
|
37
|
+
"author": "Roby Karti S <robyfull.dev@gmail.com>",
|
|
38
|
+
"license": "MIT",
|
|
39
39
|
"type": "commonjs",
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@prisma/adapter-mariadb": "^7.2.0",
|
package/readme.md
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
Buat project baru cukup dengan satu perintah:
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
|
-
npx lapeh
|
|
20
|
+
npx lapeh nama-project-anda
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
### Apa yang terjadi otomatis?
|
|
@@ -82,7 +82,10 @@ npm run prisma:generate
|
|
|
82
82
|
# Migrasi Database (Development)
|
|
83
83
|
npm run prisma:migrate
|
|
84
84
|
|
|
85
|
-
#
|
|
85
|
+
# Membuka GUI Database (Prisma Studio)
|
|
86
|
+
npm run db:studio
|
|
87
|
+
|
|
88
|
+
# Migrasi Database Dan Seed (Development - Reset Total default option for development)
|
|
86
89
|
npm run db:reset
|
|
87
90
|
|
|
88
91
|
# Deploy ke Production
|