ph4un00b / RustLangES.github.io

Sitio web de la comunidad RustLangES

Home Page:https://rustlanges.github.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

image

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

Requisitos Generales

antes de empezar tienes que instalar estos programas

Requisitos Windows >= 10

  • BusyBox
    • try: scoop install busybox
    • try: choco install busybox

Desarrollo

Note

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

git submodule update --init --recursive

Now you can run:

rustup toolchain install nightly
rustup default nightly
rustup target add wasm32-unknown-unknown
npm install
trunk build
trunk serve --open
# Or more verbose
trunk --config Trunk.toml serve --verbose --open

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
}

About

Sitio web de la comunidad RustLangES

https://rustlanges.github.io/

License:MIT License


Languages

Language:Rust 43.0%Language:CSS 42.4%Language:Nix 5.8%Language:HTML 4.1%Language:TypeScript 3.3%Language:JavaScript 1.4%