This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| for line in $(cat /home/developer/ruby-2.0.0-p247/.installed.list); do | |
| if [[ -f $line ]]; then | |
| eval "rm $line" | |
| elif [[ -d $line ]]; then | |
| eval "rm -rf $line" | |
| fi; | |
| done |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module.exports = function(grunt){ | |
| grunt.initConfig({ | |
| pkg: grunt.file.readJSON('package.json'), | |
| connect: { | |
| all:{ | |
| options:{ | |
| port: 9000, | |
| hostname:"0.0.0.0", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "skeleton-typescript-webpack", | |
| "version": "1.0.0", | |
| "description": "A starter kit for building a standard navigation-style app with Aurelia and Webpack.", | |
| "main": "dist/app.bundle.js", | |
| "repository": { | |
| "url": "git+ssh://[email protected]/aurelia/skeleton-navigation.git", | |
| "type": "git" | |
| }, | |
| "author": "Bazyli Brzóska <[email protected]> (https://invent.life/)", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { Aurelia } from 'aurelia-framework'; | |
| import { PLATFORM } from 'aurelia-pal'; | |
| import { AuthService } from 'aurelia-auth'; | |
| import * as Bluebird from 'bluebird'; | |
| import * as AureliaAuth from 'aurelia-auth' | |
| import * as authConfig from './authConfig'; | |
| Bluebird.config({ warnings: { wForgottenReturn: false } }); | |
| export async function configure(aurelia: Aurelia) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import { PLATFORM } from 'aurelia-pal'; | |
| export { NavBar } from './bar/nav-bar'; | |
| export function configure(config) { | |
| config.globalResources([ | |
| /*PLATFORM.moduleName('./bar/nav-bar'), | |
| PLATFORM.moduleName('./text-editor'), | |
| PLATFORM.moduleName('./search-bar'), | |
| PLATFORM.moduleName('./controls/check-box'), | |
| PLATFORM.moduleName('./controls/tabs'), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const path = require('path') | |
| const HtmlWebpackPlugin = require('html-webpack-plugin'); | |
| const CopyWebpackPlugin = require('copy-webpack-plugin'); | |
| const ExtractTextPlugin = require('extract-text-webpack-plugin'); | |
| const { AureliaPlugin, ModuleDependenciesPlugin } = require('aurelia-webpack-plugin'); | |
| const { optimize: { CommonsChunkPlugin }, ProvidePlugin } = require('webpack') | |
| const { TsConfigPathsPlugin, CheckerPlugin } = require('awesome-typescript-loader'); | |
| // config helpers: | |
| const ensureArray = (config) => config && (Array.isArray(config) ? config : [config]) || [] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| echo "=============================================" | |
| echo "== HELM BUILD TOOL ==" | |
| echo "=============================================" | |
| echo "" | |
| # Globals | |
| DD_SERIES_URL="https://api.datadoghq.com/api/v1/series?api_key=${DD_API_KEY}" | |
| DD_STREAM_URL="https://api.datadoghq.com/api/v1/events?api_key=${DD_API_KEY}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| echo "=============================================" | |
| echo "== HELM RELEASE TOOL ==" | |
| echo "=============================================" | |
| echo "" | |
| # Globals | |
| DD_SERIES_URL="https://api.datadoghq.com/api/v1/series?api_key=${DD_API_KEY}" | |
| DD_STREAM_URL="https://api.datadoghq.com/api/v1/events?api_key=${DD_API_KEY}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| version: 2 | |
| jobs: | |
| build: | |
| docker: | |
| - image: circleci/python:3.6.1 | |
| working_directory: ~/repo | |
| steps: | |
| - checkout | |
| - restore_cache: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM debian | |
| # Environment Variables | |
| ENV VER=17.03.0-ce | |
| # Installing Utilities | |
| RUN apt-get clean | |
| RUN apt-get update | |
| RUN apt-get install curl -y | |
| RUN apt-get install gnupg2 -y |
OlderNewer