Skip to content

Techbrunch/open5e

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

open5e

Build Status

An SRD and open-source material reference site for 5th edition D&D

Contributing

Open5e is a community project driven by a small number of voluneers in their spare time. We welcome any and all contributions! If you're working on content, please take a look at our style guide.

Editing Content

Open5e is statically generated using Sphinx, a Python-based documentation generator. The content is written in reStructuredText. If this is your first time working with reST, take a look at the syntax guide. Also, take a look at our reST editor tool recommendations.

Installation

After cloning the repo, you'll need to install Sphinx. You'll need Python 2.7 or higher. We recommend you install Sphinx in a virtual environment:

pip install virtualenv
virtualenv open5e_venv
source open5e_venv/bin/activate
cd open5e
pip install -r requirements.txt

Then you'll be able to then do an initial build to generate the local files using the Makefile in the top of the repo.

make html

Making changes

Sphinx documentation pages are written using a markup language called reStructuredText. Once you make your changes, you simply need to rebulid using make html, then you can preview the site in your browser at file:///path/to/open5e/build/html/index.html

Editing the theme

If you are going to change the theme, you'll need sass. If you don't already have npm and ruby you'll also need to install them.

Find out if you already have npm and ruby:

npm --version
ruby --version

If you don't get a command not found error, you're ready to install sass:

gem install sass

Then cd to the template directory, install the node dependencies, and run a build.

cd _themes/open5e_red_theme/
npm install
npm run build

This should build the style and launch a demo page with LiveReload for you to work against. If you want to preview your results on the 5e page, you'll need to do a clean Sphinx rebuild because the Makefile doesn't recognize changes to the theme as requiring an update:

cd open5e
make clean
make html

About

An SRD and open-source material reference site for 5th edition D&D

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CSS 71.9%
  • HTML 9.9%
  • Python 7.2%
  • JavaScript 5.2%
  • Makefile 3.3%
  • Batchfile 1.8%
  • Other 0.7%