Skip to content

Latest commit

 

History

History
61 lines (46 loc) · 1.25 KB

README.md

File metadata and controls

61 lines (46 loc) · 1.25 KB

image

GitHub Workflow Status (with event) GitHub Workflow Status (with event)

Requisitos

antes de empezar tienes que instalar estos programas

Desarrollo

Note

necesitas fetch git submodules para clonar los assets externos para el desarrollo

git submodule update --init --recursive

Now you can run:

trunk serve
npm install 

Configura tu VSCode

Agrega esto en tu settings.json

{
  "emmet.includeLanguages": {
    "rust": "html",
    "*.rs": "html"
  },
  "tailwindCSS.includeLanguages": {
      "rust": "html",
      "*.rs": "html"
  },
  "files.associations": {
      "*.rs": "rust"
  },
  "editor.quickSuggestions": {
    "other": "on",
    "comments": "on",
    "strings": true
  },
  "css.validate": false
}