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 | |
# Directories | |
cur=$(pwd) | |
tmp=$(mktemp -d) | |
scriptName=$(basename "$0") | |
# Certificate Variables | |
OUTPATH="./" | |
VERBOSE=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: Continuous deploy | |
on: | |
push: | |
branches: [master] | |
jobs: | |
serverless-deploy: | |
runs-on: ubuntu-latest |
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
good | |
- web-sdk is working | |
- have a lot of time for experimentation and out of sprint stuff | |
- animations | |
- sdk finally plays | |
- block structure for json api | |
- uneventful hah | |
bad | |
- drm for mobile sdk ain't workin (ios/android) |
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
'steps' => [ | |
'VTYPE_ESIGN' => 'http://link.to/a/file', | |
'VTYPE_VIDEO' => true | |
] |
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
<?php | |
$tokenOrPin = $request->create([ | |
'uid' => 1234567890, | |
'caption' => 'Hi! my name is john from the lovely island of Singapore', | |
'data' => [ | |
'foo' => 'bar' | |
], | |
'steps' => [ | |
'VTYPE_ESIGN' => 'http://link.to/a/file', |
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
$request = Vbc\Request::factory($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
<?php | |
$config = [ | |
'AppKey' => '', | |
'SecretKey' => '' | |
]; | |
$client = new Vbc\Client($config); | |
$request = new Vbc\Request($client); |
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
<?php | |
require_once 'vendor/autoload.php'; | |
$config = [ | |
'AppKey' => '', | |
'SecretKey' => '' | |
]; | |
// oop | |
$client = new Vbc\Client($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
"require": { | |
"incube8/vbc-sdk": "dev-master" | |
} |