Skip to content

toitware/web-docs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

General Documentation

This repository contains the general documentation of toit served at docs.toit.io.

Setup for development

yarn

yarn is used in web projects. To install yarn, follow the guide here.

Note! You don't need to setup your PATH env.var. as described in the guide.

If you haven't installed node yet, install node from nodejs.org. Add the node bin directory to your PATH in $HOME/.profile

Linting and imports in VS Code

Useful developer tools

Available Scripts

⚠️ Make sure to run yarn install before any of these commands!

In the project directory, you can run:

yarn develop

Runs the app in the development mode. Open http://localhost:8000 to view it in the browser.

The page will reload if you make edits. You will also see any lint errors in the console.

If you want to be able to access the development server from other computers, use this: yarn develop -H 0.0.0.0

yarn build

Builds the app for production to the build folder.

yarn serve

The same as yarn develop but it serves the built site.

Learn More

You can learn more in the Create React App documentation.

To learn React, check out the React documentation.

Writing docs

All the documentation pages are in docs/. The folder and file hierarchy is also used in the navigation.

The documentation pages are written in .mdx which are markdown files that can also import react components.

Components

There are multiple components to make the content more engaging:

<Note />

<Note type="info">

Content here can be markdown

</Note>

The type can be info or warning for now.

<Tabs />

<Tabs>
<Tab label="Tab 1">

Content of tab 1

</Tab>
<Tab label="Tab 2">

Content of tab 2

</Tab>
</Tabs>

Menu

The sidebar navigation on the left is defined in docs/menu.yaml.

You can look at src/@types/index.d.ts for all valid properties.