Skip to content

Instantly share code, notes, and snippets.

View dweber019's full-sized avatar

David Weber dweber019

View GitHub Profile
{
"openapi": "3.0.1",
"info": {
"title": "AKHQ",
"license": {
"name": "Apache 2.0",
"url": "https://raw.githubusercontent.com/tchiotludo/akhq/master/LICENSE"
}
},
"tags": [
asyncapi: 2.0.0
info:
title: Account Service
version: 1.0.0
description: |
*Italic*
**Bold**
# Heading 1
{
"type": "record",
"name": "Geschaeft",
"namespace": "ch.basler.parsys.integration.model",
"fields": [
{
"name": "geschKeyTyp",
"type": "int"
},
{
@dweber019
dweber019 / Jenkinsfile
Created March 14, 2019 15:50 — forked from danielgehr/Jenkinsfile
Jenkins pipeline template with environment configuration using gitflow
// ***********************
//
// Build and deploy different environments with jenkins pipeline
//
// Merge to develop -> triggers development release
// Merge to master without tag -> triggers staging release
// Merge to master with tag -> triggers staging and production release
// Production release requires manual approval on the jenkins job
//
// Configure jenkins pipeline project to pull tags! By default, tags are not pulled!
@dweber019
dweber019 / popover.service.ts
Created February 16, 2018 06:44
Aurelia popper.js (popover)
import { autoinject, TemplatingEngine } from 'aurelia-framework';
import * as $ from 'jquery';
import Popper from 'popper.js';
import * as _ from 'lodash';
export interface IPopoverConfiguration {
element: HTMLElement;
contentViewModel: string;
contentModel?: any;
title?: string;