Docus provides a ready-to-use documentation website starter.
This is the minimal directory structure to get an up and running Docus website.
content/
index.md
public/
favicon.ico
package.json
content/ directoryThis is where you write pages in Markdown.
public/ directoryFiles contained within the public/ directory are served at the root and are not modified by the build process of your documentation. This is where you can locate your medias.
package.jsonThis file contains all the dependencies and scripts for your application. The package.json of a Docus application si really minimal and looks like:
{
"name": "docus-starter",
"scripts": {
"dev": "docus dev",
"build": "docus build"
},
"devDependencies": {
"docus": "latest"
}
}
app.config.tsThis file is not mandatory to start a Docus application.
This is where you can configure Docus to fit your branding, handle SEO and adapt links and socials.