File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,6 +12,37 @@ The XRP software platform is an integrated development environment where you can
1212- ** Python** (v3.8 or higher)
1313- ** npm** or ** yarn**
1414
15+ ### Development Environment Setup
16+
17+ - Install VSCode or Google Antigravity
18+ - Install IDE Extensions
19+ - Pylance
20+ - Python
21+ - ESLint
22+ - Prettier
23+ - Git Graph
24+ - Tailwind CSS IntelliSense
25+ - Install NodeJS
26+ - Install Python
27+ - Setup Python Virtual Environment
28+
29+ #### Debugging
30+
31+ - Create a launch.json file in the .vscode directory to debug the frontend
32+ ``` json
33+ {
34+ "configurations" : [
35+ {
36+ "name" : " XRP Web" ,
37+ "type" : " chrome" ,
38+ "request" : " launch" ,
39+ "url" : " http://localhost:3000" ,
40+ "webRoot" : " ${workspaceFolder}"
41+ }
42+ ]
43+ }
44+ ```
45+
1546### Frontend Setup
1647
17481 . ** Clone the repository**
Original file line number Diff line number Diff line change @@ -232,7 +232,7 @@ def _stop_poll_timer(self):
232232 """
233233 if self ._poll_timer_running :
234234 self ._poll_timer .deinit ()
235- kbd_intr (03 ) #start watching for ctrl-c again
235+ kbd_intr (3 ) #start watching for ctrl-c again
236236 self ._poll_timer_running = False
237237 if self ._stdin_poll is not None :
238238 try :
Original file line number Diff line number Diff line change @@ -299,7 +299,6 @@ function NavBar({ layoutref }: NavBarProps) {
299299 } ) ;
300300
301301 AppMgr . getInstance ( ) . on ( EventType . EVENT_HIDE_BLUETOOTH_CONNECTING , ( ) => {
302- setDialogContent ( < div /> ) ;
303302 toggleDialog ( ) ;
304303 } ) ;
305304
You can’t perform that action at this time.
0 commit comments