.. | ||
homepage | ||
.gitignore | ||
check_version.py | ||
docker-compose.yml | ||
gradio.nginx.conf | ||
package-lock.json | ||
README.md | ||
reload_website.sh | ||
reload_with_notification.sh |
The Gradio Website
The Gradio website (https://gradio.app) is built from the contents of this folder. The website is tightly coupled with the rest of the repository through several ways:
- The documentation loaded from the docstrings of the objects themselves, and is generated using the gradio library in the gradio folder of this repository. If you want to see changes you made to the docstrings in the library, please install an editable version of the library from root of the directory:
pip install gradio -e .
- The demos are loaded from the
gradio/demo
folder, hosted on spaces, and linked to the documentation in the docstrings of the documented object. - The guide pages are loaded from the
gradio/guides
folder
The website is launched through the docker-compose.yml
file in this directory.
You can run the entire website by:
- Installing nginx
- Copying gradio.nginx.conf from this folder to /etc/nginx/conf.d/gradio.nginx.conf
- Running
docker-compose build && docker-compose up
- (Re)starting nginx
This will serve the website on port 80 (you can change the port from the gradio.nginx.conf file)
Alternatively, for development, read the homepage
section below:
The homepage
docker
The homepage folder builds the static content of the website into standalone files, served by nginx in docker. For development purposes, instead of running docker to test changes, just run sh scripts/launch_website.sh
from the root of the repo.
Auto-Reloading
The website is built from the main branch and automatically reloads on commits to main.