This file contains hidden or 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
#!/bin/bash | |
apt update && apt upgrade -y | |
apt install software-properties-common python-software-properties apt-transport-https -y | |
wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add - | |
echo "deb https://artifacts.elastic.co/packages/5.x/apt stable main" | sudo tee -a /etc/apt/sources.list.d/elastic-5.x.list | |
add-apt-repository ppa:webupd8team/java -y | |
apt update | |
echo "oracle-java8-installer shared/accepted-oracle-license-v1-1 select true" | sudo debconf-set-selections | |
apt install oracle-java8-installer -y | |
apt install nginx apache2-utils elasticsearch -y |
This file contains hidden or 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
/* | |
* Types for React Router V4 | |
* Example Usage: | |
* type PropsT = { | |
* myProp: string, | |
* } & ContextRouterT<{ | |
* routeParam: string, | |
* anotherRouteParam: ?string, | |
* }> | |
*/ |
OlderNewer