Skip to content

Commit d7673c3

Browse files
committed
docs: add development environment guide, fix character code literal, and remove redundant dialog content reset
1 parent 8b87d34 commit d7673c3

3 files changed

Lines changed: 32 additions & 2 deletions

File tree

README.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff 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

1748
1. **Clone the repository**

public/lib/XRPLib/puppet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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:

src/components/navbar.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)