Skip to content

Instantly share code, notes, and snippets.

View kdjomeda's full-sized avatar

kodjo-kuma Djomeda kdjomeda

  • Dreamoval Ltd
  • Accra
View GitHub Profile
###docker-compose
version: '3'
services:
redis:
image: "redis:alpine"
networks:
- envoymesh
proxy:
build:
context: .
@kdjomeda
kdjomeda / index.php
Created August 17, 2016 16:58
Modified index.php that only passes , amount, order id and comment
<?php
include_once 'Integrator.class.php';
$paylive="https://app.slydepay.com.gh/payLIVE/detailsnew.aspx?pay_token=";
$ns="http://www.i-walletlive.com/payLIVE";
$wsdl="https://app.slydepay.com.gh/webservices/paymentservice.asmx?wsdl";
$settings = parse_ini_file("config.ini");
---
# - name: Instal AWS CLI on Node(s)
# user: ubuntu
# sudo: True
# hosts: all
# tasks:
# - name: Install Python PIP
# apt: pkg=python-pip state=present
# - name: Install boto via PIP
# pip: name=boto state=latest
@kdjomeda
kdjomeda / wordpress_on_apache
Created July 5, 2015 12:46
Intro to ansible tutorial playbook
---
- hosts: webservers
tasks:
- name: Install Apache
apt: pkg=apache2 update_cache=true state=installed
- name: Install bunch of php packages
apt: pkg={{ item }} update_cache=true state=installed
with_items:
- php5
- php5-cli