This is the code that powers www.writethedocs.org. It contains information about the Write the Docs group, as well as information about writing documentation.
The repo is still in its early stages; feel free to contribute information that you might want to share with the community. To contribute to the Write the Docs website, famililarize yourself with the Sphinx site generator.
You'll probably need root
privileges to install the prerequisites.
-
Install
python 2.7.x
using your package manager. -
If your version of Python as shown by
python -V
is <=2.7.9
:- download and install pip.
- install
virtualenv
using your package manager.
-
In the repository root directory (
www
by default), create a virtual environment for the project requirements by runningvirtualenv venv
. More info on virtualenv. -
On Linux-based systems, activate the virtual environment by running
source venv/bin/activate
. On Windows using the Command Prompt, runvenv\Scripts\activate.bat
. On Windows using PowerShell, run. venv\Scripts\activate.ps1
. On Windows using Git Bash, runsource venv\Scripts\activate
. You'll need to do this every time you come back to the project. -
In the repository root directory (
www
by default), runpip install -r requirements.txt
to install sphinx and other requirements.
Remember to activate the virtual environment using the appropriate command for your OS and Shell before running the following commands.
- In the
docs
directory, runmake livehtml
to view the docs on http://127.0.0.1:8888/.
If you're not seeing new content in the local preview, run make clean
to delete the generated files, then make livehtml
to regenerate them.
The Write the Docs website is hosted on Read the Docs.
If you you can't run make livehtml
locally, or don't want to, you can preview
changes by merging them into the staging
branch and pushing that to GitHub.
If your feature branch is changes-to-test
you would do something like:
git checkout staging
git pull
git merge changes-to-test
git push
Unless there are merge conflicts you need to resolve, when you push those changes a build is triggered on Read the Docs and when it is finished you can preview your changes on:
http://writethedocs-staging.readthedocs.io/en/staging/
If you need to update the theme, the original source is in
https://github.com/writethedocs/website-theme/
and instructions on how to update it are in the README.md
The website for 2018 uses sass to compile all the assets it has, in order to modify the theme first you must install the dependencies of gulp, you can do that by running in the main directory:
npm install
With that you will install all the requirements to minify your css, after that you only need to run:
gulp
This has to be used alongside the sphinx server and it will
automatically minify all the content in your .scss
files to the
main.min.css
file. Also gulp will be running browserify allowing you
to see the css changes inmediatelly in the browser.