Skip to content

Commit fda21dd

Browse files
committed
Initial Commit
Minimalistic Example of Hosting Sphnix on Neltify.
1 parent f231d5e commit fda21dd

9 files changed

+118
-2
lines changed

Makefile

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Minimal makefile for Sphinx documentation
2+
#
3+
4+
# You can set these variables from the command line, and also
5+
# from the environment for the first two.
6+
SPHINXOPTS ?=
7+
SPHINXBUILD ?= sphinx-build
8+
SOURCEDIR = ./source
9+
BUILDDIR = build
10+
11+
# Put it first so that "make" without argument is like "make help".
12+
help:
13+
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
14+
15+
.PHONY: help Makefile
16+
17+
# Catch-all target: route all unknown targets to Sphinx using the new
18+
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
19+
%: Makefile
20+
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

README.md

+21-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,21 @@
1-
# sphinx-netlify
2-
Minimalistic Example of Sphinx on Netlify
1+
# sphinx-netliy : Minimalistic Example of Sphinx on Netlify
2+
3+
[![Netlify Status](https://api.netlify.com/api/v1/badges/6e617b73-9bc1-453a-b318-564653a46048/deploy-status)](https://app.netlify.com/sites/sphinx-netlify/deploys)
4+
5+
This repo is a minimalistic working example of delploying Static Sites Generated using Sphinx. It has been tested with
6+
7+
1. Python v. 3.8
8+
2. sphinx v. 4.3.1
9+
3. sphinx_rtd_theme v. 1.0.0
10+
11+
## Install
12+
13+
Just clone this repository and then delpying it from Netlify. Nothing need to be changed and it will work out of the box.
14+
15+
## Tweaking
16+
17+
You can tweak and play with your newly deployed website. Feel free to browse through the sphinx documentation to tweak the outputs as per your requiremetns.
18+
19+
## Pull Request
20+
21+
If you have suggestion/improvements then please consider submitting a pull request or create an issue.

netlify.toml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build]
2+
publish = "build/dirhtml"
3+
command = "make dirhtml"

requirements.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
sphinx==4.3.1
2+
sphinx_rtd_theme==1.0.0

runtime.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.8

source/_static/custom.css

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/* include relevent additional css here */

source/_static/custom.js

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
window.addEventListener('load', (event) => {
2+
var menu = document.querySelector(".wy-menu ul li:first-child")
3+
if (!menu.classList.contains("current")) {
4+
menu.classList.add("current")
5+
}
6+
});

source/conf.py

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# -*- coding: utf-8 -*-
2+
# Note that not all possible configuration values are present. All configuration
3+
# values have a default.
4+
5+
# -- General configuration --
6+
project = 'Sphinx On Netlify'
7+
copyright = '2021, Seo Wings'
8+
author = 'seowings'
9+
10+
master_doc = 'index'
11+
version = 'latest'
12+
pygments_style = 'sphinx'
13+
14+
html_css_files = ['custom.css']
15+
html_js_files = ['custom.js']
16+
html_theme = 'sphinx_rtd_theme'
17+
html_baseurl = 'https://sphinx-netlify.netlify.app/'
18+
html_theme_options = {
19+
'current_version': version,
20+
"collapse_navigation": False,
21+
}
22+
html_context = {
23+
'display_github': True,
24+
'github_user': 'seowings',
25+
'github_repo': 'sphinx-netlify',
26+
'github_version': 'main/source/'
27+
}
28+
29+
html_favicon = '_static/favicon.ico'
30+
html_static_path = ['_static']
31+
html_extra_path = ['robots.txt']
32+
33+
# If true, links to the reST sources are added to the pages.
34+
html_show_sourcelink = True
35+
html_show_copyright = True
36+
37+
htmlhelp_basename = 'ContinuousSphinxDoc'

source/index.rst

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
=================
2+
Sphinx on Netlify
3+
=================
4+
5+
Minimalistic Example of Hosting Sphnix on Neltify.
6+
7+
Install
8+
========
9+
10+
Just clone this repository and then delpying it from `Netlify`_. Nothing need to be changed and it will work out of the box.
11+
12+
13+
Tweaking
14+
========
15+
16+
You can tweak and play with your newly deployed website. Feel free to browse through the `sphinx`_ documentation to tweak the outputs as per your requiremetns.
17+
18+
Pull Request
19+
============
20+
21+
If you have suggestion/improvements then please consider submitting a pull request or create an issue.
22+
23+
.. toctree::
24+
:maxdepth: 2
25+
26+
.. _sphinx: https://www.sphinx-doc.org/en/master/
27+
.. _Netlify: https://www.netlify.com/

0 commit comments

Comments
 (0)