Skip to content

Commit b54a118

Browse files
committed
Merge branch 'main' into FranksDev
2 parents a7c22ed + 4c22a48 commit b54a118

69 files changed

Lines changed: 2050 additions & 668 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.flowbite-react/config.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
"$schema": "https://unpkg.com/flowbite-react/schema.json",
33
"components": [],
44
"dark": true,
5-
"prefix": "",
65
"path": "src/components",
6+
"prefix": "",
7+
"rsc": true,
78
"tsx": true,
8-
"rsc": true
9+
"version": 3
910
}

.flowbite-react/init.tsx

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/* eslint-disable */
2+
// @ts-nocheck
3+
// biome-ignore-all lint: auto-generated file
4+
5+
// This file is auto-generated by the flowbite-react CLI.
6+
// Do not edit this file directly.
7+
// Instead, edit the .flowbite-react/config.json file.
8+
9+
import { StoreInit } from "flowbite-react/store/init";
10+
import React from "react";
11+
12+
export const CONFIG = {
13+
dark: true,
14+
prefix: "",
15+
version: 3,
16+
};
17+
18+
export function ThemeInit() {
19+
return <StoreInit {...CONFIG} />;
20+
}
21+
22+
ThemeInit.displayName = "ThemeInit";

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**

0 commit comments

Comments
 (0)