Skip to content

Commit

Permalink
add development support fiels
Browse files Browse the repository at this point in the history
  • Loading branch information
geozak committed Nov 6, 2016
1 parent fbb19c8 commit f5cadb6
Show file tree
Hide file tree
Showing 3 changed files with 69 additions and 9 deletions.
57 changes: 57 additions & 0 deletions _config-local.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
# Jekyll configuration

name: Geozak's Blog
description: Software Developer

# Url is currently only used only for the RSS feed in feed.xml
#url: http://blog.dev
url: http://localhost:4000

# For a project page here should be a project name. Otherwise (for user's/organizaion's page leave it empty)
baseurl: ''

share:
facebook: true
twitter: true
gplus: true
linkedin: true
pinterest: true
email: true

social:
github: geozak
stackoverflow: ''
linkedin: ''
instagram: ''
lastfm: ''
rss: feed.xml

# Google Analytics key, leave blank to ignore
google_analytics_key:
# Yandex metrika (https://metrica.yandex.com/) leave blank to ignore or put true to use
yandex_metrica:


# Set this to your disqus shortname to enable comments. Note that the 'comments'
# setting below must also be true. Individual posts can override 'comments' to
# disable on a post-by-post basis
disqus:
comments: false

permalink: /:year/:month/:title

# Enable for using pages, more details are here: http://jekyllrb.com/docs/pagination/
#paginate: 3

#highlighter: rouge

markdown: kramdown
kramdown:
input: GFM # Enable GitHub Flavored Markdown (fenced code blocks)
hard_wrap: true

exclude: ['README.md', 'LICENSE', 'prep-tags-for-git.sh']

include: [.htaccess]

destination: public
11 changes: 2 additions & 9 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,8 @@ description: Software Developer

# Url is currently only used only for the RSS feed in feed.xml
url: https://geozak.github.io
#url: http://jekyll.dev
#url: http://localhost:4000

# For a project page here should be a project name. Otherwise (for user's/organizaion's page leave it empty)
#baseurl: ''
baseurl: '/jekyll-clean-dark'

share:
Expand All @@ -23,7 +20,7 @@ share:
social:
github: geozak
stackoverflow: ''
linkedin:
linkedin: ''
instagram: ''
lastfm: ''
rss: feed.xml
Expand Down Expand Up @@ -52,8 +49,4 @@ kramdown:
input: GFM # Enable GitHub Flavored Markdown (fenced code blocks)
hard_wrap: true

exclude: ['README.md', 'LICENSE']

include: [.htaccess]

destination: public
exclude: ['README.md', 'LICENSE', 'prep-tags-for-git.sh', '.htaccess']
10 changes: 10 additions & 0 deletions prep-tags-for-git.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/sh

rm -rf tag/
jekyll build
cp -r _site/tag ./
git reset HEAD tag/*
git add -f tag/
git update-index --assume-unchanged tag/*/*
rm -rf tag/
rm -r _site/

0 comments on commit f5cadb6

Please sign in to comment.