Skip to content

Commit ee50ae9

Browse files
committed
Merge pull request #54 from timhall/docs
Start docs
2 parents 0da081b + bdc9964 commit ee50ae9

File tree

4 files changed

+50
-0
lines changed

4 files changed

+50
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# node_modules should be installed with npm install
22
specs/node_modules
3+
docs/node_modules
4+
docs/.grunt
35

46
# Ignore generated site files
57
_site

docs/Gruntfile.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
module.exports = function(grunt) {
2+
grunt.initConfig({
3+
'gh-pages': {
4+
options: {
5+
base: 'dist'
6+
},
7+
src: ['**']
8+
}
9+
});
10+
11+
// Load plugins
12+
grunt.loadNpmTasks('grunt-gh-pages');
13+
14+
// Register tasks
15+
grunt.registerTask('publish', ['gh-pages']);
16+
};

docs/dist/index.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<title>Excel-REST</title>
5+
</head>
6+
<body>
7+
Excel-REST docs, coming soon...
8+
</body>
9+
</html>

docs/package.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "Excel-REST-docs",
3+
"version": "0.0.0",
4+
"description": "Excel-REST Docs",
5+
"repository": {
6+
"type": "git",
7+
"url": "https://github.com/timhall/Excel-REST.git"
8+
},
9+
"keywords": [
10+
"Excel-REST",
11+
"Docs"
12+
],
13+
"author": "Tim Hall ([email protected])",
14+
"license": "MIT",
15+
"bugs": {
16+
"url": "https://github.com/timhall/Excel-REST/issues"
17+
},
18+
"homepage": "https://github.com/timhall/Excel-REST",
19+
"devDependencies": {
20+
"grunt": "~0.4.5",
21+
"grunt-gh-pages": "~0.9.1"
22+
}
23+
}

0 commit comments

Comments
 (0)