Skip to content

Commit d5c6804

Browse files
authored
Merge pull request #45 from RustLangES/readme_cambios
arreglar el readme para ayudar novatos como yooo
2 parents 27c0359 + 196b66a commit d5c6804

File tree

2 files changed

+23
-10
lines changed

2 files changed

+23
-10
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,4 @@ end2end/playwright-report/
1919
playwright/.cache/
2020
pnpm-lock.yaml
2121
.idea/
22+
settings.json

README.md

+22-10
Original file line numberDiff line numberDiff line change
@@ -6,26 +6,36 @@
66
<img alt="GitHub Workflow Status (with event)" src="https://img.shields.io/github/actions/workflow/status/RustLangES/RustLangES.github.io/gh-pages.yml?label=deploy" />
77
</p>
88

9+
## Requisitos
10+
antes de empezar tienes que instalar estos programas
11+
- [Rust](https://rust-lang.org/tools/install)
12+
- [NodeJs](https://nodejs.org)
13+
- [Trunk](https://trunk.dev)
14+
15+
16+
17+
918
## Desarrollo
1019
> [!NOTE]
11-
> You need run `git submodule update --init --recursive` to get external assets for development generation
20+
> necesitas fetch git submodules para clonar los assets externos para el desarrollo
21+
22+
```sh
23+
git submodule update --init --recursive
24+
```
25+
26+
1227
Now you can run:
1328
```sh
1429
trunk serve
1530
```
16-
17-
## Requisitos
18-
- [Rust](https://rust-lang.org/tools/install)
19-
- [NodeJs](https://nodejs.org)
20-
```bash
21-
npm install -D tailwindcss
31+
```bash
32+
npm install
2233
```
23-
- [Trunk](https://trunk.dev)
24-
2534
## Configura tu VSCode
2635
Agrega esto en tu `settings.json`
2736

2837
```json
38+
{
2939
"emmet.includeLanguages": {
3040
"rust": "html",
3141
"*.rs": "html"
@@ -42,5 +52,7 @@ Agrega esto en tu `settings.json`
4252
"comments": "on",
4353
"strings": true
4454
},
45-
"css.validate": false,
55+
"css.validate": false
56+
}
4657
```
58+

0 commit comments

Comments
 (0)