Example on how to run locally an AWS Lambda via API Gateway using localstack.
Based on...
import apiFetch from 'modules/api-fetch'; | |
import Toast from 'modules/toast/index.native'; | |
import Sentry from 'modules/sentry'; | |
const FILE_CHUNK_SIZE = 5242880; | |
const uploadMultipart = async ( | |
file: string, | |
setIsUploading = (set: boolean) => {}, | |
setUploadProgress = (set: number) => {}, |
<body class="antialiased sans-serif bg-gray-100"> | |
<div x-data="app()" x-init="[initDate(), getNoOfDays()]" x-cloak> | |
<div class="container mx-auto px-4 py-2 md:py-24"> | |
<!-- <div class="font-bold text-gray-800 text-xl mb-4"> | |
Schedule Tasks | |
</div> --> | |
<div class="bg-white rounded-lg shadow overflow-hidden"> |
<?php | |
/** | |
* Reference: | |
* - http://www.libnfc.org/api/examples_page.html | |
* - https://github.com/nfc-tools/libnfc/blob/master/examples/nfc-poll.c | |
* | |
* Tested: | |
* - PaSoRi RC-S330 | |
* | |
* Example Output: |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>AR Demo</title> | |
<script src="https://aframe.io/releases/0.6.1/aframe.min.js"></script> | |
<script src="https://jeromeetienne.github.io/AR.js/aframe/build/aframe-ar.js"></script> | |
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script> | |
<meta name="apple-mobile-web-app-capable" content="yes"> | |
<script> | |
// We're going to register a custom event listener through a-frame that will fire |
Example on how to run locally an AWS Lambda via API Gateway using localstack.
Based on...
<?php | |
use Illuminate\Support\ServiceProvider; | |
use Illuminate\Database\Eloquent\Builder; | |
use Illuminate\Support\Arr; | |
class AppServiceProvider extends ServiceProvider | |
{ | |
// ... |
#!/bin/sh | |
# ---- Config | |
ENV_NAME="Homologação" | |
TAG_SUFFIX="homolog" | |
PROJECT_NAME="Scania Journey Event" | |
PROJECT_PATH_HOST="/home/lfalmeida/Projects/GitHooks/prod/" | |
PROJECT_PATH_DOCKER="/src/projeto" | |
SLACK_WEBHOOK="" | |
ENABLE_SLACK_POST=0 |
openssl genrsa 2048 > private.pem | |
openssl req -x509 -new -key private.pem -out public.pem | |
openssl pkcs12 -export -in public.pem -inkey private.pem -out mycert.pfx |