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: Playbook Sample | |
hosts: localhost | |
become: true | |
tasks: | |
- name: install libselinux-python | |
yum: | |
name: libselinux-python | |
state: present |
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: "3.5" | |
services: | |
sonarqube: | |
image: sonarqube | |
ports: | |
- "9000:9000" | |
networks: | |
- sonarnet | |
environment: |
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: '3' | |
services: | |
postgres: | |
image: armhf/postgres:9.6-alpine | |
restart: always | |
environment: | |
- POSTGRES_USER=${POSTGRES_USER} | |
- POSTGRES_PASSWORD=${POSTGRES_PASSWORD} | |
- POSTGRES_DB=gogsdb | |
volumes: |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using Microsoft.AspNetCore.Builder; | |
using Microsoft.AspNetCore.Http; | |
using Newtonsoft.Json; | |
namespace GitInfo | |
{ | |
public static class UseGitInfoExtensions |
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
using System; | |
using Microsoft.AspNetCore.SignalR.Client; | |
using Microsoft.AspNetCore.Sockets; | |
using Microsoft.AspNetCore.TestHost; | |
namespace Tests | |
{ | |
public static class TestServerExtensions | |
{ | |
public static HubConnection CreateHubConnection(this TestServer testServer, string hubPath, TransportType transportType = TransportType.LongPolling) |