Skip to content

Commit aa861cc

Browse files
authored
Merge pull request #8 from codegratia/RNWS-03
RNWS-03
2 parents f059a9c + 3f041f2 commit aa861cc

File tree

2 files changed

+29
-28
lines changed

2 files changed

+29
-28
lines changed

README.md

Lines changed: 29 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -27,35 +27,44 @@ Runs the server in development mode with nodemon.
2727

2828
## Client
2929

30-
The client was bootstrapped with Create React App.
30+
This is a [React App](https://react.dev/) bootstrapped with [vite](https://vitejs.dev/).
3131

32-
### Available Scripts
33-
34-
In the client directory, you can run:
35-
36-
#### `npm start`
32+
## Getting Started
3733

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:
4035

41-
#### `npm test`
36+
Steps to follows:
4237

43-
Launches the test runner in the interactive watch mode.<br>
44-
See the section about running tests for more information.
38+
install Dependencies:
4539

46-
#### `npm run build`
40+
```bash
41+
npm install
42+
# or
43+
yarn
44+
```
4745

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:
5047

51-
#### `npm run eject`
48+
```bash
49+
npm run dev
50+
# or
51+
yarn dev
52+
```
5253

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.
5455

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+
```
5661

57-
## Learn More
62+
Builds the app for production to the `dist` folder.
5863

59-
You can learn more in the Create React App documentation.
64+
```bash
65+
npm run preview
66+
# or
67+
yarn preview
68+
```
6069

61-
To learn React, check out the React documentation.
70+
Preview the production build locally.

client/README.md

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)