Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/roll20/beacon-docs
Repository for public documentation of Beacon SDK.
https://github.com/roll20/beacon-docs
Last synced: 2 days ago
JSON representation
Repository for public documentation of Beacon SDK.
- Host: GitHub
- URL: https://github.com/roll20/beacon-docs
- Owner: Roll20
- License: mit
- Created: 2024-05-23T19:48:52.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-22T19:24:32.000Z (4 months ago)
- Last Synced: 2024-07-22T23:05:37.579Z (4 months ago)
- Language: CSS
- Homepage: https://roll20.github.io/beacon-docs/
- Size: 4.03 MB
- Stars: 1
- Watchers: 11
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Install dependencies
In the root folder and install the dependencies before continuing.```
npm install
```## Start the development server
To preview your work locally and automatically refreshes your browser when you make changes.Inside your project folder, run the following command to start the development server:
```
npm run dev
```## Add pages
Add new pages to your site by creating .md or .html files in content/docs/. Use sub-folders to organize your files and to create multiple path segments.For example, the following command will generate a page at example.com/docs/guides/faq:
```
npm run create docs/guides/faq.md
```## Build project
To build your project, run the following command:```
hugo
```Or
```
npm run build
```