You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+29-20Lines changed: 29 additions & 20 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,35 +27,44 @@ Runs the server in development mode with nodemon.
27
27
28
28
## Client
29
29
30
-
The client was bootstrapped with Create React App.
30
+
This is a [React App](https://react.dev/) bootstrapped with [vite](https://vitejs.dev/).
31
31
32
-
### Available Scripts
33
-
34
-
In the client directory, you can run:
35
-
36
-
#### `npm start`
32
+
## Getting Started
37
33
38
-
Runs the app in development mode.<br>
39
-
Open http://localhost:3000 to view it in the browser.
34
+
For Running the client app:
40
35
41
-
#### `npm test`
36
+
Steps to follows:
42
37
43
-
Launches the test runner in the interactive watch mode.<br>
44
-
See the section about running tests for more information.
38
+
install Dependencies:
45
39
46
-
#### `npm run build`
40
+
```bash
41
+
npm install
42
+
# or
43
+
yarn
44
+
```
47
45
48
-
Builds the app for production to the `build` folder.<br>
49
-
It correctly bundles React in production mode and optimizes the build for the best performance.
46
+
### Available Scripts:
50
47
51
-
#### `npm run eject`
48
+
```bash
49
+
npm run dev
50
+
# or
51
+
yarn dev
52
+
```
52
53
53
-
**Note: this is a one-way operation. Once you `eject`, you can’t go back!**
54
+
Runs the app in development mode. Open http://localhost:5173 to view it in the browser.
54
55
55
-
If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
56
+
```bash
57
+
npm run build
58
+
# or
59
+
yarn build
60
+
```
56
61
57
-
## Learn More
62
+
Builds the app for production to the `dist` folder.
58
63
59
-
You can learn more in the Create React App documentation.
64
+
```bash
65
+
npm run preview
66
+
# or
67
+
yarn preview
68
+
```
60
69
61
-
To learn React, check out the React documentation.
0 commit comments