mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-21 02:19:59 +08:00
4bee781da4
* added emojis to navbar; added guides main page * Added guides list * chatbot tutorial * chatbot tutorial almost complete * embedding chatbot * fixed html rendering inside pre tags issue * finished guide * basic search * search guides content * design changes * reading author and date * sketchpad tutorial * font change * added version badge and spaces links * sketch app * auto meta images, removed date and author * removed empty guides * navbar separate; updated readme * added navbar; fixed guide * added flagging guide * added related spaces to flagging guide * added tags, small fixes * footer design Co-authored-by: Abubakar Abid <aaabid93@gmail.com> Co-authored-by: Abubakar Abid <a12d@stanford.edu> Co-authored-by: aliabd <ali.si3luwa@gmail.com> |
||
---|---|---|
.. | ||
src | ||
.dockerignore | ||
.gitignore | ||
Dockerfile | ||
nginx.conf | ||
package-lock.json | ||
package.json | ||
postcss.config.js | ||
README.md | ||
render_html.py | ||
replace_style_names.py | ||
requirements.txt | ||
tailwind.config.js |
Building Gradio Website
Run the following commands in order:
pip install -r requirements.txt
npm install
npm run build
The website will be built in the dist/ folder as a static website. To launch, run: cd dist && python3 -m http.server
Modifying the Website
The HTML and CSS template of the website should be modified in the src/ directory. To build changes, run npm run build
. To automatically rebuild when you change a file in src/, run npm run watch
.