Skip to content

Commit cfef0ad

Browse files
docs: add RunDocs config
1 parent 14667ba commit cfef0ad

File tree

5 files changed

+38
-0
lines changed

5 files changed

+38
-0
lines changed

docs/.debug.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
remote_theme: false
2+
3+
theme: jekyll-rtd-theme

docs/Gemfile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
source "https://gems.ruby-china.com"
2+
gem "jekyll-rtd-theme"
3+
4+
gem "github-pages", group: :jekyll_plugins

docs/Makefile

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
DEBUG=JEKYLL_GITHUB_TOKEN=blank PAGES_API_URL=http://0.0.0.0
2+
3+
default:
4+
@gem install jekyll bundler && bundle install
5+
6+
update:
7+
@bundle update
8+
9+
clean:
10+
@bundle exec jekyll clean
11+
12+
build: clean
13+
@${DEBUG} bundle exec jekyll build --profile --config _config.yml,.debug.yml
14+
15+
server: clean
16+
@${DEBUG} bundle exec jekyll server --livereload --config _config.yml,.debug.yml

docs/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# GraphGen

docs/_config.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
title: GraphGen
2+
lang: en
3+
description: Enhancing Supervised Fine-Tuning for LLMs with Knowledge-Driven Synthetic Data Generation
4+
5+
remote_theme: rundocs/jekyll-rtd-theme
6+
7+
readme_index:
8+
with_frontmatter: true
9+
10+
exclude:
11+
- Makefile
12+
- CNAME
13+
- Gemfile
14+
- Gemfile.lock

0 commit comments

Comments
 (0)