No more favicon, add artifacts

This commit is contained in:
Tom MacWright
2016-03-02 17:51:11 -08:00
parent 1bd8a9eeb4
commit 8be42b8dee
3 changed files with 8 additions and 1 deletions

View File

@ -1,5 +1,7 @@
# Docbox
[![Circle CI](https://circleci.com/gh/mapbox/docbox.svg?style=svg)](https://circleci.com/gh/mapbox/docbox)
**Docbox is an open source version of Mapbox's REST API documentation system.** It takes structured Markdown files and generates a friendly two-column layout with navigation, permalinks, and examples. The documentation source files that Docbox uses are friendly for documentation authors and free of presentational code: it's just Markdown.
**Docbox is a JavaScript application written with React.** The core magic is thanks to the [remark](http://remark.js.org/) Markdown parser, which enables the layout: after parsing a file into an [Abstract Syntax Tree](https://en.wikipedia.org/wiki/Abstract_syntax_tree), we can move examples to the right, prose to the left, and build the navigation system.

6
circle.yml Normal file
View File

@ -0,0 +1,6 @@
test:
post:
- npm run build
- mv index.html $CIRCLE_ARTIFACTS
- mv bundle.js $CIRCLE_ARTIFACTS
- mv css $CIRCLE_ARTIFACTS

View File

@ -6,7 +6,6 @@
<title>Mapbox</title>
<meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' />
<link href='css/base.css' rel='stylesheet' />
<link rel='shortcut icon' href='/img/favicon.ico' type='image/x-icon' />
<link href='css/style.css' rel='stylesheet' />
<link href='css/railscasts.css' rel='stylesheet' />
</head>