-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathconfig.toml
37 lines (32 loc) · 1.5 KB
/
config.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# ***********************************************
# *** DO NOT ENTER YOUR GITHUB API TOKEN HERE ***
# ***********************************************
# GithubToken DOES NOT contain the actual API token.
# GithubToken contains THE NAME OF THE ENVIRONMENT VARIABLE HOLDING THE TOKEN.
# Usually just leave this as the default and export your API token if you want to use one.
# Glyph also works without a Github API token. It is only needed for certain features (NOT IMPLEMENTED YET).
#
# This is a security measure so people don't commit their API token to their git repository.
GithubToken = "GLYPH_GITHUB_TOKEN"
# section Repository contains all data regarding the repository that contains
# the site/blog issues.
[Repository]
# Users defines all users whose issues will be imported into the blog
# the first user must be the owner of the blog repository
# all usernames are login names for github
Users = ["your-github-username"]
# Name is just the name of the repository containing the blog issues/articles
Name = "blog"
# section Site contains all data that will be used in the statically generated html.
[Site]
Title = "Your Site Title"
Author = "Your Name"
OneLineDesc = "A short description of your content or something clever.."
Twitter = "Your Twitter handle"
Mail = "your email address"
# in the theme folder there is a theme.toml which specifies theme specific pages
Theme = "default"
# section custom allows to pass custom data into the glyph templating process.
[Custom]
# for example:
# MyPets = ["Tom", "Jerry"]