Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .eleventy.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
module.exports = function(eleventyConfig) {
eleventyConfig.addPassthroughCopy("css");
eleventyConfig.addPassthroughCopy("CNAME");
eleventyConfig.addLayoutAlias("default", "default.njk");
return {
passthroughFileCopy: true
Expand Down
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodestudyguide.com
11 changes: 5 additions & 6 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@ layout: default.njk
title: OpenJS NodeJS Application Developer Study Guide
---

TODO:
Welcome to the ONAD Study Guide. This site has been set up to help you prepare for [OpenJS Node.js Application Developer (JSNAD)](https://training.linuxfoundation.org/certification/jsnad/) certification.

- Set out the purpose here and list the sections with links
- Styling and update the default template
Each of the topics on the left corresponds to an area of knowledge you will need to be familiar with. Feel free to work through the content in whatever order you like.

[Events]({{ "/events" | url }})

-- Adding timestamp to test deploy
```
NOTE: This is an early work-in-progress. Most content is not in place yet. Thank you for your patience!
```
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "OpenJS Node application developer study guide",
"scripts": {
"start": "npx eleventy --serve",
"preDeploy": "npx eleventy --pathprefix=openjs-nodejs-application-developer-study-guide",
"preDeploy": "npx eleventy",
"deploy": "npm run preDeploy; timestamp=$(date \"+%s\") && gh-pages -d _site -m \"Deployed at $timestamp\""
},
"repository": {
Expand Down