One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| .text-area { | |
| -fx-background-insets: 0; | |
| -fx-background-color: transparent, white, transparent, white; | |
| -fx-background-radius: 0, 0, 0, 0; | |
| -fx-box-border: none; | |
| -fx-focus-color: -fx-control-inner-background; | |
| -fx-faint-focus-color: -fx-control-inner-background; | |
| -fx-text-box-border: -fx-control-inner-background; | |
| -fx-border-width: -1; |
Portable
| swagger: '2.0' | |
| info: | |
| title: Siren API | |
| description: Template for a Siren API | |
| version: '0.1.0' | |
| schemes: | |
| - http | |
| - https | |
| basePath: / | |
| produces: |
| # Reference: https://www.exclamationlabs.com/blog/continuous-deployment-to-npm-using-gitlab-ci/ | |
| # GitLab uses docker in the background, so we need to specify the | |
| # image versions. This is useful because we're freely to use | |
| # multiple node versions to work with it. They come from the docker | |
| # repo. | |
| # Uses NodeJS V 9.4.0 | |
| image: node:9.4.0 | |
| # And to cache them as well. |