Skip to content

Commit 487ee0b

Browse files
committed
running the quickstart
1 parent d15db6e commit 487ee0b

File tree

12 files changed

+6137
-1847
lines changed

12 files changed

+6137
-1847
lines changed

app/index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
<head>
44
<meta charset="utf-8">
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6-
<title>EmpressDocumentation</title>
76
<meta name="description" content="">
87
<meta name="viewport" content="width=device-width, initial-scale=1">
98

app/templates/application.hbs

Lines changed: 0 additions & 5 deletions
This file was deleted.

config/environment.js

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ module.exports = function(environment) {
55
modulePrefix: 'empress-documentation',
66
environment,
77
rootURL: '/',
8-
locationType: 'auto',
8+
locationType: 'trailing-history',
9+
910
EmberENV: {
1011
FEATURES: {
1112
// Here you can enable experimental features on an ember canary build
@@ -20,7 +21,15 @@ module.exports = function(environment) {
2021
APP: {
2122
// Here you can pass flags/options to your application instance
2223
// when it is created
23-
}
24+
},
25+
26+
guidemaker: {
27+
title: 'Empress Documentation',
28+
description: 'Empress - JAM Stack projects built with Ember',
29+
sourceRepo: 'https://github.com/empress/documentation'
30+
},
31+
32+
historySupportMiddleware: true
2433
};
2534

2635
if (environment === 'development') {

ember-cli-build.js

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,16 @@ const EmberApp = require('ember-cli/lib/broccoli/ember-app');
44

55
module.exports = function(defaults) {
66
let app = new EmberApp(defaults, {
7-
// Add options here
7+
fingerprint: {
8+
extensions: ['js', 'css', 'map']
9+
},
10+
autoImport: {
11+
webpack: {
12+
node: {
13+
path: true
14+
}
15+
}
16+
}
817
});
918

1019
// Use `app.import` to add additional libraries to the generated

guides/getting-started/editing.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This is designed to add some documentation on how to get started editing your bits and pieces

guides/getting-started/index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
If your'e reading this in your browser then congratulations! You are already started.

guides/index.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Welcome to your brand new Guidemaker Guides 🎉
2+
3+
## Let's start editing
4+
5+
You should be able to start editing the files under `guides/` now to produce your documentation. Don't forget to checkout [the Editing Guide](./getting-started/editing/) to know how to set things up!

guides/pages.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
- title: "Guides and Tutorials"
2+
url: 'index'
3+
skip_toc: true
4+
pages:
5+
- title: "Guides"
6+
url: ""
7+
8+
- title: "Getting Started"
9+
url: 'getting-started'
10+
pages:
11+
- title: "Introduction"
12+
url: "index"
13+
- title: "Editing"
14+
url: "editing"

node-tests/link-checker.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/* eslint-env node, mocha */
2+
const guidemakerLinkChecker = require('guidemaker-link-checker');
3+
4+
describe('check all links in markdown files', function () {
5+
guidemakerLinkChecker();
6+
});

node-tests/toc-checker.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/* eslint-env node, mocha */
2+
const guidemakerTocChecker = require('guidemaker-toc-checker');
3+
4+
describe('check all of the pages.yml files are correct', function () {
5+
guidemakerTocChecker();
6+
});

0 commit comments

Comments
 (0)