diff --git a/.gitignore b/.gitignore index 4cbb863..f5e2361 100644 --- a/.gitignore +++ b/.gitignore @@ -19,3 +19,4 @@ end2end/playwright-report/ playwright/.cache/ pnpm-lock.yaml .idea/ +settings.json diff --git a/README.md b/README.md index b60fa28..192f6bf 100644 --- a/README.md +++ b/README.md @@ -6,26 +6,36 @@ GitHub Workflow Status (with event)

+## Requisitos +antes de empezar tienes que instalar estos programas +- [Rust](https://rust-lang.org/tools/install) +- [NodeJs](https://nodejs.org) +- [Trunk](https://trunk.dev) + + + + ## Desarrollo > [!NOTE] -> You need run `git submodule update --init --recursive` to get external assets for development generation +> necesitas fetch git submodules para clonar los assets externos para el desarrollo + +```sh +git submodule update --init --recursive +``` + + Now you can run: ```sh trunk serve ``` - -## Requisitos -- [Rust](https://rust-lang.org/tools/install) -- [NodeJs](https://nodejs.org) - ```bash - npm install -D tailwindcss + ```bash + npm install ``` -- [Trunk](https://trunk.dev) - ## Configura tu VSCode Agrega esto en tu `settings.json` ```json +{ "emmet.includeLanguages": { "rust": "html", "*.rs": "html" @@ -42,5 +52,7 @@ Agrega esto en tu `settings.json` "comments": "on", "strings": true }, - "css.validate": false, + "css.validate": false +} ``` +