Use it for Kubernetes liveness & readiness checks. The middleware opens a HTTP server on port 3001. To check, open the http://localhost:3001/live & http://localhost:3001/ready URL.
{
"state": "up",
"uptime": 7.419,| const defaultTheme = require('tailwindcss/defaultTheme'); | |
| module.exports = { | |
| purge: [ | |
| './vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php', | |
| './storage/framework/views/*.php', | |
| './resources/views/**/*.blade.php', | |
| './resources/js/**/*.vue', | |
| ], | |
| # This manifest will help on configuring the Sendgrid universal links with SSL on the Kubernetes ingress | |
| # https://sendgrid.com/docs/ui/sending-email/universal-links/#setting-up-universal-links-using-nginx | |
| apiVersion: v1 | |
| kind: Service | |
| metadata: | |
| name: sendgrid-links-redirect | |
| spec: | |
| type: ExternalName | |
| externalName: sendgrid.net |
| import * as pulumi from '@pulumi/pulumi'; | |
| import * as ocean from '@pulumi/digitalocean'; | |
| interface Options { | |
| } | |
| class ContainerRegistry extends pulumi.ComponentResource { | |
| public name: pulumi.Output<string>; | |
| public username: pulumi.Output<string>; | |
| public password: pulumi.Output<string>; |
Use it for Kubernetes liveness & readiness checks. The middleware opens a HTTP server on port 3001. To check, open the http://localhost:3001/live & http://localhost:3001/ready URL.
{
"state": "up",
"uptime": 7.419,| # iOS | |
| app_identifier "com.myapp.app" # The bundle identifier of your app | |
| apple_id "[email protected]" # Your Apple email address | |
| team_id "1234ABCD" # Developer Portal Team ID | |
| # Android | |
| json_key_file "./google-play-api-secret.json" # Path to the json secret file - Follow https://github.com/fastlane/supply#setup to get one | |
| package_name "com.myapp.app" # Your Android app package |
| test.isFalse(v, msg) | |
| test.isTrue(v, msg) | |
| test.equal(actual, expected, message, not) | |
| test.length(obj, len) | |
| test.include(s, v) | |
| test.isNaN(v, msg) | |
| test.isUndefined(v, msg) | |
| test.isNotNull | |
| test.isNull | |
| test.throws(func) |
| <html> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
| <title>Popup Example</title> | |
| </head> | |
| <body> | |
| <script> | |
| function popupCallback(str){ | |
| alert("This is callback:" + str); | |
| } |
| /* | |
| * This work is free. You can redistribute it and/or modify it under the | |
| * terms of the Do What The Fuck You Want To Public License, Version 2, | |
| * as published by Sam Hocevar. See the COPYING file for more details. | |
| */ | |
| /* | |
| * Easing Functions - inspired from http://gizma.com/easing/ | |
| * only considering the t value for the range [0, 1] => [0, 1] | |
| */ | |
| EasingFunctions = { |
| <?php | |
| require("postmark.php"); | |
| $postmark = new Postmark("your-api-key","from-email","optional-reply-to-address"); | |
| $result = $postmark->to("[email protected]") | |
| ->subject("Email Subject") | |
| ->plain_message("This is a plain text message.") | |
| ->attachment('File.pdf', base64_encode(file_get_contents('sample.pdf')), 'application/pdf') |