4 KiB
Executable file
Generating Documentation Website for your App
Frappe version 6.7 onwards includes a full-blown documentation generator so that you can easily create a website for your app that has both user docs and developers docs (auto-generated). These pages are generated as static HTML pages so that you can add them as GitHub pages.
Writing Docs
1. Setting up docs
1.1. Setup docs.py
The first step is to setup the docs folder. For that you must create a new file in your app config/docs.py if it is not auto-generated. In your docs.py file, add the following module properties.
source_link = "https://github.com/[orgname]/[reponame]"
docs_base_url = "https://[orgname].github.io/[reponame]"
headline = "This is what my app does"
sub_heading = "Slightly more details with key features"
long_description = """(long description in markdown)"""
def get_context(context):
# optional settings
# context.brand_html = 'Brand info on the top left'
# context.favicon = 'path to favicon'
#
# context.top_bar_items = [
# {"label": "About", "url": context.docs_base_url + "/about"},
# ]
pass
1.2. Generate /docs
To generate the docs for the current version, go to the command line and write
bench --site [site] build-docs [appname]
If you want to maintain versions of your docs, then you can add a version number instead of current
This will create a /docs folder in your app.
2. Add User Documentation
To add user documentation, add folders and pages in your /docs/user folder in the same way you would build a website pages in the www folder.
Some quick tips:
- Add your pages as
.mdor.htmlpages - Optionally add
.cssfiles with the same name that will be automatically served - Add index by adding
{index}
3. Linking
While linking make sure you add {{ docs_base_url }} to all your links.
{% raw %}<a href="{{ docs_base_url }}/user/link/to/page.html">Link Description</a>{% endraw %}
4. Adding Images
You can add images in the /docs/assets folder. You can add links to the images as follows:
{% raw %}<img src="{{ docs_base_url }}/assets/img/my-img/gif" class="screenshot">{% endraw %}
Setting up output docs
The output docs are generated in your docs/appname folder using the write-docs command.
Viewing Locally
To test your docs locally, add a --local option to the write-docs command.
bench --site [site] write-docs [appname] --local
Then it will build urls so that you can view these files locally. To view them locally in your browser, you can use the Python SimpleHTTPServer
Run this from your docs/myapp folder:
python -m SimpleHTTPServer 8080
Publishing to GitHub Pages
To publish your docs on GitHub pages, you will have to create an empty and orphan branch in your repository called gh-pages and push your documentation there.
- To easily publish your docs on gh-pages, commit and push your
apps/docsfolder on you master branch first. - The
/docsgeneration will also generate a/docsfolder in your bench, parallel to your/sitesfolder. e.g./frappe-bench/docs - Generate you documentation using the
write-docscommand. - Go to your docs folder
cd docs/myapp - Checkout the gh-pages branch
git checkout --orphan gh-pages - Push your documentation to Github.
Note > The branch name gh-pages is only if you are using GitHub. If you are hosting this on any other static file server, you can create any other orphan branch instead.
Putting it all together:
# build the apps/docs folder and write the compiled docs at docs/appname
bench --site [site] build-docs [appname]
# commit to the gh-pages branch (for GitHub Pages)
cd docs/appname
git checkout --orphan gh-pages
git remote add origin [remote git repository]
git add *
git commit -m "Documentation Initialization"
git push origin gh-pages
To check your documentation online go to: https://[orgname].github.io/[reponame]