Given that your key has expired.
$ gpg --list-keys
$ gpg --edit-key KEYID
Use the expire command to set a new expire date:
| // Types for the result object with discriminated union | |
| type Success<T> = { | |
| data: T; | |
| error: null; | |
| }; | |
| type Failure<E> = { | |
| data: null; | |
| error: E; | |
| }; |
| FROM php:7.2.10-apache-stretch | |
| RUN apt-get update -yqq && \ | |
| apt-get install -y apt-utils zip unzip && \ | |
| apt-get install -y nano && \ | |
| apt-get install -y libzip-dev libpq-dev && \ | |
| a2enmod rewrite && \ | |
| docker-php-ext-install pdo_pgsql && \ | |
| docker-php-ext-install pgsql && \ | |
| docker-php-ext-configure zip --with-libzip && \ |
| APP_ENV=testing | |
| APP_KEY=SomeRandomString | |
| DB_CONNECTION=testing | |
| DB_TEST_USERNAME=root | |
| DB_TEST_PASSWORD= | |
| CACHE_DRIVER=array | |
| SESSION_DRIVER=array | |
| QUEUE_DRIVER=sync |
Create the app and download the necessary dependencies.
| # Android SDK setup | |
| ## Install Java | |
| ```bash | |
| sudo apt-get update | |
| sudo dpkg --add-architecture i386 | |
| sudo apt-get install libbz2-1.0:i386 | |
| sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1 | |
| sudo apt-get install openjdk-8-jdk openjdk-8-jre |
| import {Injectable,Inject,ElementRef, Renderer} from '@angular/core'; | |
| //import { DOCUMENT } from '@angular/platform/common_dom'; | |
| import {DOCUMENT} from '@angular/platform-browser'; | |
| @Injectable() | |
| export class SeoService { | |
| private _r: Renderer; | |
| private _el: ElementRef; | |
| private _document: any; | |
| /** |
| @mixin for-phone-only { | |
| @media (max-width: 599px) { @content; } | |
| } | |
| @mixin for-tablet-portrait-up { | |
| @media (min-width: 600px) { @content; } | |
| } | |
| @mixin for-tablet-portrait-only { | |
| @media (min-width: 600px) and (max-width: 899px) { @content; } | |
| } | |
| @mixin for-tablet-landscape-up { |
| var gulp = require('gulp'), | |
| sass = require('gulp-ruby-sass'), | |
| autoprefixer = require('gulp-autoprefixer'), | |
| minifycss = require('gulp-minify-css'), | |
| jshint = require('gulp-jshint'), | |
| uglify = require('gulp-uglify'), | |
| rename = require('gulp-rename'), | |
| clean = require('gulp-clean'), | |
| concat = require('gulp-concat'), | |
| notify = require('gulp-notify'), |