Skip to content

Commit ade5f1f

Browse files
author
Sashko Stubailo
committed
Add docs site
1 parent 94f79ec commit ade5f1f

File tree

9 files changed

+3928
-0
lines changed

9 files changed

+3928
-0
lines changed

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "docs/themes/meteor"]
2+
path = docs/themes/meteor
3+
url = https://github.com/meteor/hexo-theme-meteor.git

docs/.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.DS_Store
2+
Thumbs.db
3+
db.json
4+
*.log
5+
node_modules/
6+
public/*
7+
!public/_redirects
8+
.deploy*/
9+
docs.json

docs/_config.yml

Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
# Hexo Configuration
2+
## Docs: http://hexo.io/docs/configuration.html
3+
## Source: https://github.com/hexojs/hexo/
4+
5+
# Site
6+
title: Apollo Docs
7+
propertytitle: Add GraphQL to your stack and start building apps faster.
8+
subtitle: Apollo Docs
9+
description: A guide to using the Apollo platform.
10+
versions:
11+
- '1'
12+
sidebar_categories:
13+
null:
14+
- index
15+
github_repo: apollographql/apollo
16+
content_root: docs/source
17+
18+
social_links:
19+
github: 'https://github.com/apollographql'
20+
twitter: '@apollographql'
21+
slackInvitePage: 'https://www.apollodata.com/#slack'
22+
23+
# API keys
24+
apis:
25+
segment: wgrIo8Bul0Ujl8USETG3DB6hONdy4kTg
26+
docsearch:
27+
apiKey: 768e823959d35bbd51e4b2439be13fb7
28+
indexName: apollodata
29+
gtm: GTM-PNFDVBB
30+
31+
# URL
32+
## If your site is put in a subdirectory, set url as 'http://yoursite.com/child' and root as '/child/'
33+
url: https://www.apollographql.com/docs
34+
root: /docs/
35+
36+
# Directory
37+
source_dir: source
38+
public_dir: public/docs
39+
tag_dir: tags
40+
archive_dir: archives
41+
category_dir: categories
42+
code_dir: downloads/code
43+
i18n_dir: :lang
44+
skip_render:
45+
46+
# Writing
47+
new_post_name: :title.md # File name of new posts
48+
default_layout: post
49+
titlecase: false # Transform title into titlecase
50+
external_link: true # Open external links in new tab
51+
filename_case: 0
52+
render_drafts: false
53+
post_asset_folder: false
54+
relative_link: false
55+
future: true
56+
highlight:
57+
enable: true
58+
line_number: true
59+
auto_detect: true
60+
tab_replace:
61+
62+
# Category & Tag
63+
default_category: uncategorized
64+
category_map:
65+
tag_map:
66+
67+
# Date / Time format
68+
## Hexo uses Moment.js to parse and display date
69+
## You can customize the date format as defined in
70+
## http://momentjs.com/docs/#/displaying/format/
71+
date_format: YYYY-MM-DD
72+
time_format: HH:mm:ss
73+
74+
# Pagination
75+
## Set per_page to 0 to disable pagination
76+
per_page: 10
77+
pagination_dir: page
78+
79+
# Extensions
80+
## Plugins: http://hexo.io/plugins/
81+
## Themes: http://hexo.io/themes/
82+
theme: meteor
83+
84+
# Deployment
85+
## Docs: http://hexo.io/docs/deployment.html
86+
deploy:
87+
type:

docs/assets/theme-colors.less

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
@color-primary: #22A699;

0 commit comments

Comments
 (0)