Was this page helpful?
If you are reading this guide because you have decided to contribute to the ScyllaDB Sphinx Theme, thank you! We appreciate your contribution and hope that this handbook will answer any questions you may have.
This project’s Python side is managed with Poetry. It combines several things in one tool:
Keeping track of Python dependencies, including ones required only for development and tests.
Initializing and managing a virtual environment.
Packaging the theme into a package for PyPI (Python Package Index).
Such package can be installed with pip install
and other tools.
To initialize a Python development environment for this project:
Make sure you have Python 3.7 or later installed.
The docs
folder contains a sample project with the Sphinx theme already installed.
To preview the theme locally:
Open a new console prompt and clone the project.
git clone https://github.com/scylladb/sphinx-scylladb-theme.git
Build the docs.
cd docs
make preview
The previous command should generate a docs/_build/dirhtml
directory. To preview the docs, open http://127.0.0.1:5500/ with your preferred browser.
The frontend static files of this project are managed with webpack. It combines several things in one tool:
Installing third-party node modules.
Combining JavaScript and CSS in a single file.
Minifying CSS and JavaScript files.
The original static files are located under the folder src
.
To build the minimized static files for this project:
Make sure you have Node.js LTS installed.
Build the static files with:
npm run build
This will create minified static files under the sphinx_scylladb_theme/static
.
Run:
poetry run pytest tests
Note
You need a PyPi account and be a project maintainer to release new theme versions.
To publish a new version of the theme to PyPi, run the following script:
./deploy.sh
To increase the minor version, run poetry version minor
before ./deploy
.
To increase the major version, run poetry version major
before ./deploy
.
Behind the scenes, deploy.sh
executes the following logic:
Checks if the local git URL matches the original repository to prevent you from releasing from a personal fork.
Checks if the local contents differ from the remote master branch.
Increases the package’s version patch with the command poetry version patch
.
Builds the package with the command poetry build
.
Asks for your PyPI username and password and publishes the package to PyPI with poetry publish
.
After publishing the package, you should see the new release listed on PyPI.
Was this page helpful?