Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add OpenGraph metadata to documentation website #494

Merged
merged 2 commits into from
Aug 15, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ You can use Skyplane to transfer data:
# Getting started

## Installation

We recommend installation from PyPi: `pip install skyplane`

*Installation on M1 Mac*: If you are using an M1 Mac with the arm64 architecture, you will need to install Skyplane as follows
Expand Down
Binary file added docs/_static/social-media-banner.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@
"sphinx.ext.viewcode",
"sphinx.ext.napoleon",
"sphinx_autodoc_typehints",
"sphinxext.opengraph",
"sphinx_click",
"myst_parser",
# 'matplotlib.sphinxext.plot_directive',
Expand Down Expand Up @@ -78,10 +79,11 @@
# a list of builtin themes.
html_theme = "furo"
html_theme_options = {"light_logo": "logo-light-mode.png", "dark_logo": "logo-dark-mode.png", "sidebar_hide_name": True}
# html_logo = "_static/logo-light-mode.png"
html_favicon = "_static/favicon.ico"
html_static_path = ["_static"]

ogp_site_url = "https://skyplane.org/"
ogp_image = "_static/social-media-banner.png"

# -- Options for EPUB output
epub_show_urls = "footnote"
13 changes: 7 additions & 6 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
sphinx>=4.4,!=5.1
sphinx-click
sphinx_rtd_theme
docutils
furo
jupyter-sphinx
myst-nb
sphinx_rtd_theme
sphinx-autobuild
sphinx-autodoc-typehints
sphinx-click
sphinx-copybutton
jupyter-sphinx
myst-nb
docutils
sphinx>=4.4,!=5.1
sphinxext.opengraph
.[solver,gateway]