Skip to content

MrTucks/betaflight.com

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Uses NANOGEN module

Note: Don't forget to run yarn (in the repository directory) to re-hydrate node_modules

Setup for Visual Studio Code (allows for CTRL-SHIFT-B to trigger immediate build):

tasks.json

{
    "version": "2.0.0",
    "tasks": [
        {
            "label": "build site",
            "type": "shell",
            "script": "bash",
            "args": [
                "-c",
                "./scripts/build.sh"
            ],
            "problemMatcher": [
            ],
            "group": {
                "kind": "build",
                "isDefault": true
            }
        }
    ]
}

This will put the website into ./public folder. Using the Go Live (Live Server by Ritwick Dey [https://github.com/ritwickdey/vscode-live-server]) module plugin for Visual Studio Code you can go live this folder:

settings.json:

{
    "liveServer.settings.root": "/public/"
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 46.0%
  • CSS 31.1%
  • EJS 22.6%
  • Shell 0.3%