Your root directory might look now like:
.
├── data
├── delete-old-backups.sh # <------ Delete backups older than 15 days
├── deploy-and-backup-gatsby.sh # <------ Deploy and backup "old" public directory
├── gatsby-browser.js
Your root directory might look now like:
.
├── data
├── delete-old-backups.sh # <------ Delete backups older than 15 days
├── deploy-and-backup-gatsby.sh # <------ Deploy and backup "old" public directory
├── gatsby-browser.js
Feature: Login | |
I want to login on Keepfy | |
Background: | |
Given I go to '/login' | |
And the field 'email' is empty | |
And the field 'password' is empty | |
Scenario: Error on empty fields |
/** | |
* useScroll React custom hook | |
* Usage: | |
* const { scrollX, scrollY, scrollDirection } = useScroll(); | |
*/ | |
import { useState, useEffect } from "react"; | |
export function useScroll() { | |
const [lastScrollTop, setLastScrollTop] = useState(0); |
## | |
# Makefile to help manage docker-compose services | |
# | |
# Built on list_targets-Makefile: | |
# | |
# https://gist.github.com/iNamik/73fd1081fe299e3bc897d613179e4aee | |
# | |
.PHONY: help about args list targets services build up down rebuild clean start status ps logs stop restart sh bash shell | |
# If you need sudo to execute docker, then udpate these aliases |
In that installation guide i will carry you through all dependencies of Lumen 5.5 on a system with Ubuntu 17.04. I will also provide known issues, that come along the installation of Lumen.
Type in the commands beneath the required package and check if you have yet installed them. If not, click the link for installation guide.
"scripts": { | |
"clean": "ionic-app-scripts clean", | |
"build": "npm run ionic:build", | |
"start": "concurrently \"npm run build:watch\" \"npm run serve\"", | |
"serve": "lite-server -c=bs-config.json", | |
"ionic:build": "gulp default && npm run lint && ionic-app-scripts build", | |
"ionic:serve": "gulp default && npm run lint && ionic-app-scripts serve --sourceMap source-map --iscordovaserve --wwwDir platforms/browser/www/ --buildDir platforms/browser/www/build", | |
"build-prod-browser": "gulp browser && ionic-app-scripts build browser --wwwDir platforms/browser/www --sourceMap source-map", | |
"build-dev-browser": "gulp browser && ionic-app-scripts build browser --wwwDir platforms/browser/www --sourceMap source-map --dev", | |
"build-dev-android": "gulp default && cordova build android --debug", |
<h1>Angular 2 Recursive List</h1> | |
<ul> | |
<ng-template #recursiveList let-list> | |
<li *ngFor="let item of list"> | |
{{item.title}} | |
<ul *ngIf="item.children.length > 0"> | |
<ng-container *ngTemplateOutlet="recursiveList; context:{ $implicit: item.children }"></ng-container> | |
</ul> | |
</li> | |
</ng-template> |
# 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 |