├── firebase.json ├── AUTHORS ├── public └── index.html ├── .travis.yml ├── README.md └── LICENSE /firebase.json: -------------------------------------------------------------------------------- 1 | { 2 | "hosting": { 3 | "public": "public" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | # Below is a list of people and organizations that have contributed 2 | # to the Dart www site. Names should be added to the list like so: 3 | # 4 | # Name/Organization 5 | 6 | Google Inc. 7 | -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Dartino 5 | 6 | 7 | 8 |

Redirecting to https://dartino.org

9 | 10 | 11 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | notifications: 2 | email: 3 | on_success: always 4 | on_failure: always 5 | 6 | install: 7 | - npm install -g firebase-tools 8 | 9 | script: 10 | - firebase deploy --project api-dartino-org-f30a3 --token "$FIREBASE_TOKEN" 11 | 12 | after_success: 13 | - echo 'Succesfully deployed /public/ to https://api.dartino.org!'. 14 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Dartino API docs 2 | 3 | This repo contains generated API documentation for the Dartino project. These 4 | are published at http://api.dartino.org. 5 | 6 | ## Making changes 7 | 8 | These docs are changed as part of the Dartino SDK promote process, see [the SDK 9 | wiki on promoting](https://github.com/dartino/sdk/wiki/Pushing-out-a-new-dev-channel-release). 10 | 11 | ## Publishing changes 12 | 13 | A Travis CI job automatically detect all pushes to this repo, and when those 14 | happen deploys the contents of the `public` directory to Firebase Hosting. 15 | 16 | [![Deployment status -](https://travis-ci.org/dartino/api.dartino.org.svg?branch=master)](https://travis-ci.org/dartino/api.dartino.org) 17 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Except as otherwise noted, the content of this page is licensed under the 2 | Creative Commons Attribution 3.0 License [1], and code samples are licensed 3 | under the BSD License: 4 | 5 | Copyright 2016, the Dartino project authors. All rights reserved. 6 | Redistribution and use in source and binary forms, with or without 7 | modification, are permitted provided that the following conditions are 8 | met: 9 | * Redistributions of source code must retain the above copyright 10 | notice, this list of conditions and the following disclaimer. 11 | * Redistributions in binary form must reproduce the above 12 | copyright notice, this list of conditions and the following 13 | disclaimer in the documentation and/or other materials provided 14 | with the distribution. 15 | * Neither the name of Google Inc. nor the names of its 16 | contributors may be used to endorse or promote products derived 17 | from this software without specific prior written permission. 18 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 19 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 20 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 21 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 22 | OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 23 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 24 | LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 25 | DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 26 | THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 27 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 28 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 | 30 | [1] http://creativecommons.org/licenses/by/3.0/ 31 | --------------------------------------------------------------------------------