Skip to content

Commit 289499b

Browse files
committed
Init
0 parents  commit 289499b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+5749
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
public
3+
db.json

_config.yml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
# Hexo Configuration
2+
## Docs: https://hexo.io/docs/configuration.html
3+
## Source: https://github.com/hexojs/hexo/
4+
5+
# Site
6+
title: GORM
7+
subtitle: The fantastic ORM library for Golang, aims to be developer friendly.
8+
description: GORM is a fantastic ORM library for Golang, aims to be developer friendly.
9+
author: Jinzhu
10+
language: en
11+
timezone: UTC
12+
13+
# URL
14+
url: http://gorm.io
15+
root: /
16+
permalink: :year/:month/:day/:title/
17+
permalink_defaults:
18+
19+
# Start Guide
20+
start: "go get -u github.com/jinzhu/gorm"
21+
22+
# Common Configuration
23+
twitter: zhangjinzhu
24+
github: jinzhu/gorm
25+
disqus_shortname:
26+
algolia:
27+
en:
28+
api_key:
29+
index_name:
30+
google_analytics:
31+
carbonads_code:
32+
33+
# Writing
34+
new_post_name: :title.md # File name of new posts
35+
external_link: true # Open external links in new tab
36+
filename_case: 0
37+
relative_link: false
38+
highlight:
39+
enable: true
40+
line_number: true
41+
auto_detect: false
42+
tab_replace:
43+
44+
# Extensions
45+
## Plugins: https://hexo.io/plugins/
46+
## Themes: https://hexo.io/themes/
47+
theme: navy # based from hexo offical site
48+
49+
# Deployment
50+
## Docs: https://hexo.io/docs/deployment.html
51+
deploy:
52+
type: git
53+
repository: https://github.com/jinzhu/gorm.io.git
54+
branch: gh-pages

0 commit comments

Comments
 (0)