This file contains 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
root@caddyMerc:/etc/caddy# more Caddyfile | |
# Learn how to configure the Mercure.rocks Hub on https://mercure.rocks/docs/hub/config | |
{ | |
# Debug mode (disable it in production!) | |
{$DEBUG} | |
# HTTP/3 support | |
servers { | |
protocol { | |
experimental_http3 | |
} |
This file contains 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
<template> | |
<ion-page> | |
<ion-content :fullscreen="true" scroll-y="false"> | |
<div id="container"> | |
<strong>Ready to create an app?</strong> | |
<ion-slides pager="true"> | |
<ion-slide> | |
<ion-card style="border-radius: 25px"> |
This file contains 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 | |
namespace App\Command; | |
use App\Entity\DeviceType; | |
use App\Message\DeviceFailedProvisionMessage; | |
use App\Message\DeviceProvisionedMessage; | |
use App\Message\SaveDeviceSettingMessage; | |
use App\Message\SaveTelemetryDataMessage; | |
use App\Repository\DeviceRepository; |
This file contains 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: | |
database: | |
image: postgres:11-alpine | |
environment: | |
POSTGRES_USER: test | |
POSTGRES_PASSWORD: test | |
POSTGRESDB: test | |
ports: [5432:5432] | |
mercure: |
This file contains 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
<template> | |
<div> | |
<div ref="card"></div> | |
<form action="/subscription" method="POST" id='myPaymentForm'> | |
<input type="hidden" name="_token" :value="token"> | |
</form> | |
</div> |