File tree Expand file tree Collapse file tree 1 file changed +20
-1
lines changed Expand file tree Collapse file tree 1 file changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -71,12 +71,31 @@ To run tests:
71
71
make tests
72
72
```
73
73
74
- To attach sistent to your project use:
74
+ #### Using your local Sistent Fork in a Project
75
+
76
+ 1 . Install your local Sistent package in the project
75
77
76
78
```
77
79
npm install <path-to-sistent-on-local-machine>
78
80
```
79
81
82
+ 2 . Build your local Sistent fork
83
+
84
+ After making changes to your fork, run this command in your local Sistent package.
85
+
86
+ ```
87
+ make build
88
+ ```
89
+
90
+ 3 . Run the build command in the project where your local Sistent fork is installed.
91
+
92
+ ```
93
+ # example, Meshery UI
94
+ make ui-build
95
+ ```
96
+
97
+ Now your project should reflect changes from your local Sistent fork.
98
+
80
99
> [ !NOTE]
81
100
> Avoid using ` type any ` in your code. Always specify explicit types to ensure type safety and maintainability.
82
101
You can’t perform that action at this time.
0 commit comments