Skip to content

Instantly share code, notes, and snippets.

View ddold's full-sized avatar
🏠
Working from home

Dan ddold

🏠
Working from home
  • CloudBees
  • Ireland
View GitHub Profile
@ddold
ddold / start_blockchain.sh
Created March 10, 2018 11:44
Bash script to check if process is running
#!/bin/bash
BLOCKCHAIN=$1
MULTICHAIND=multichaind
check_process(){
if [ "$BLOCKCHAIN" = "" ];
then
#echo "No blockchain defined in parameter"
return 3
@ddold
ddold / pageviewservice.log
Created February 19, 2019 07:41
PageViewService Container Logs
. ____ _ __ _ _
/\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/ ___)| |_)| | | | | || (_| | ) ) ) )
' |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot :: (v2.0.0.BUILD-SNAPSHOT)
2019-02-19 07:26:31.091 INFO 1 --- [ main] g.s.PageViewServiceApplication : Starting PageViewServiceApplication v0.0.1-SNAPSHOT on 35732f1373a8 with PID 1 (/page-view-service-0.0.1-SNAPSHOT.jar started by root in /)
query ProductsCount {
products {
nodes {
description
id
name
repositories {
totalCount
__typename
}