Skip to content

Latest commit

 

History

History
58 lines (46 loc) · 1.26 KB

README.md

File metadata and controls

58 lines (46 loc) · 1.26 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`

```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
}