You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.3 KiB

# Semantic Docs
## How to Use
10 years ago
This folder contains the templates used to generate the static website for [semantic-ui.com](http://www.semantic-ui.com)
10 years ago
To install DocPad
```
npm install -g docpad
docpad install eco;
docpad update; docpad upgrade;
```
10 years ago
### Generating SUI for Docs
10 years ago
Before running server you will need to build your UI files for the docs. Semantic UI includes a special command to build files for a docs instance that must be run from an adjacent Semantic UI folder.
10 years ago
```
10 years ago
# assumes ./docs and ./ui for default paths, run from ./ui
10 years ago
gulp build-docs
```
10 years ago
> The default location for ``build-docs`` is an adjacent folder with the name ``docs/``. The command must be run from your UI folder and not from the docs folder.
10 years ago
10 years ago
To configure a different docs location modify [ tasks/docs.json](https://github.com/Semantic-Org/Semantic-UI/blob/master/tasks/admin/docs.json)
10 years ago
10 years ago
### Running Server
10 years ago
You can then start your docs server (and generate docs) using:
10 years ago
```
docpad run
10 years ago
```
10 years ago
To watch for changes from your ui folder to serve to your docs instance
```
gulp serve-docs
```
10 years ago
## Help Fix Typos and Errors
If you find any typos or mistakes, submitting a fix is easy!
[Open the documents folder](https://github.com/Semantic-Org/Semantic-UI-Docs/tree/master/server/documents) on GitHub, click the edit button on the appropriate page. Then click to submit a pull request.