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
| ## Install Jenkins | |
| $ sudo yum update | |
| $ sudo wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat-stable/jenkins.repo | |
| $ sudo rpm --import http://pkg.jenkins-ci.org/redhat-stable/jenkins-ci.org.key | |
| $ sudo yum install jenkins | |
| $ sudo service jenkins start | |
| $ sudo chkconfig jenkins on | |
| ## Install Docker (Amazon EC2 Container Service) |
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
| # Default.toml | |
| port = 8090 | |
| important_message = 'RUN NOW!!' |
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
| from anytree import Node, RenderTree | |
| import json | |
| parent_node = Node('/') | |
| print ("$ <Starting your application....>") | |
| def get_input(input_cmd = input("$")): | |
| #find length of input command. if length is 1 -> ls, pwd; if length = 2 cd </home/user>, makdir qwerty | |
| length = len(input_cmd.split()) |
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
| export const ws = webSocket<WebsocketMessage>(`wss://${location.hostname}:${location.protocol === 'https:' ? 443 : 80}/ws/`); | |
| export const wsObserver = ws | |
| .pipe( | |
| retryWhen(errors => | |
| errors.pipe( | |
| delay(1000) | |
| ) | |
| ) | |
| ); |
OlderNewer