PictureElement / betaflight.com

Repository from Github https://github.comPictureElement/betaflight.comRepository from Github https://github.comPictureElement/betaflight.com

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


Languages

Language:JavaScript 47.5%Language:CSS 32.0%Language:HTML 20.2%Language:Shell 0.3%