Updated Jekyll config
This commit is contained in:
parent
59aa24d6ad
commit
bfb6683081
3 changed files with 7 additions and 5 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -13,8 +13,8 @@ index.html
|
||||||
.project
|
.project
|
||||||
.settings
|
.settings
|
||||||
.sass-cache
|
.sass-cache
|
||||||
_site
|
|
||||||
node_modules
|
node_modules
|
||||||
|
/docs
|
||||||
/videos
|
/videos
|
||||||
/web
|
/web
|
||||||
c64/
|
c64/
|
||||||
|
|
|
||||||
|
|
@ -170,7 +170,7 @@ Now open a web browser and go to `http://localhost:4000/`. You're done!
|
||||||
Some useful Jekyll server options include:
|
Some useful Jekyll server options include:
|
||||||
|
|
||||||
bundle exec jekyll serve --host=0.0.0.0 --config _config.yml,_developer.yml
|
bundle exec jekyll serve --host=0.0.0.0 --config _config.yml,_developer.yml
|
||||||
|
|
||||||
The *--host* option makes it possible to access the web server from other devices on your local network;
|
The *--host* option makes it possible to access the web server from other devices on your local network;
|
||||||
for example, you may want to run PCjs on your iPhone, iPad, or other wireless device. And by adding **_developer.yml**,
|
for example, you may want to run PCjs on your iPhone, iPad, or other wireless device. And by adding **_developer.yml**,
|
||||||
you can override the Jekyll configuration defaults in **_config.yml**. Using development (non-production) settings in
|
you can override the Jekyll configuration defaults in **_config.yml**. Using development (non-production) settings in
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,7 @@
|
||||||
# Site settings
|
# Site settings
|
||||||
|
|
||||||
|
source: .
|
||||||
|
destination: ./docs
|
||||||
title: "PCjs Machines"
|
title: "PCjs Machines"
|
||||||
email: Jeff@pcjs.org
|
email: Jeff@pcjs.org
|
||||||
description: >
|
description: >
|
||||||
|
|
@ -8,8 +10,8 @@ description: >
|
||||||
(up through the 80386), C1Pjs for the 6502-based Ohio Scientific Challenger 1P, PC8080 for 8080-based machines
|
(up through the 80386), C1Pjs for the 6502-based Ohio Scientific Challenger 1P, PC8080 for 8080-based machines
|
||||||
such as Space Invaders and the DEC VT100 Terminal, and PDPjs with support for PDP-10 and PDP-11 machines.
|
such as Space Invaders and the DEC VT100 Terminal, and PDPjs with support for PDP-10 and PDP-11 machines.
|
||||||
PCjs also provides an archive of selected historical PC software, publications, and reference materials.
|
PCjs also provides an archive of selected historical PC software, publications, and reference materials.
|
||||||
baseurl: "/pcjs" # "/pcjs" when using http://jeffpar.github.io or "" when using http://www.pcjs.org
|
baseurl: ""
|
||||||
url: "http://jeffpar.github.io" # "http://jeffpar.github.io" or "http://www.pcjs.org"
|
url: "http://www.pcjs.org"
|
||||||
twitter_username: jeffpar
|
twitter_username: jeffpar
|
||||||
github_username: jeffpar
|
github_username: jeffpar
|
||||||
|
|
||||||
|
|
@ -19,7 +21,7 @@ encoding: UTF-8
|
||||||
|
|
||||||
# Build settings
|
# Build settings
|
||||||
|
|
||||||
exclude: ["index.html", "**/index.html", "bin", "logs", "node_modules", "projects", "src", "tmp", "videos", "web", "**/archive", "**/ecp", "**/c64", "**/private", "**/restricted", "**/src", "**/tmp", "**/unlisted", ".git", ".idea"]
|
exclude: ["index.html", "**/index.html", "bin", "logs", "node_modules", "projects", "src", "tmp", "videos", "web", "**/archive", "**/ecp", "**/c64", "**/private", "**/restricted", "**/src", "**/tmp", "**/unlisted", ".git", ".idea", "/Gemfile", "/Gemfile.lock", "/Gruntfile.js", "/gulpfile.js", "/notes.md", "/server.js", "/*.sh"]
|
||||||
markdown: kramdown
|
markdown: kramdown
|
||||||
kramdown:
|
kramdown:
|
||||||
input: GFM
|
input: GFM
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue