View virtengine-waldur.sh
This file contains 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 | |
yum update -y | |
yum install -y https://download.postgresql.org/pub/repos/yum/9.6/redhat/rhel-7-x86_64/pgdg-centos96-9.6-3.noarch.rpm | |
yum install -y postgresql96-server | |
/usr/pgsql-9.6/bin/postgresql96-setup initdb | |
systemctl start postgresql-9.6 |
View VirtEngine Installation
This file contains 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
Information: | |
[VirtEngine Website](https://virtengine.com) | |
[Public Cloud.tc Multi-Provider](https://cloud.tc) | |
[VirtEngine Installation](https://docs.virtengine.com) | |
[OpenNebula 5.6 Installation](https://docs.opennebula.org/5.6/deployment/node_installation/kvm_node_installation.html) | |
# Prep System: | |
apt-get update |
View styles.css
This file contains 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
.form label { | |
display: block; | |
} | |
.meta { | |
font-size: 18px; | |
display: block; | |
line-height: 1.8em; | |
color: #acacac; | |
margin-bottom: .675em; | |
letter-spacing: .1em; |
View data.js
This file contains 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
function getId() { | |
return ++id; | |
} | |
let myAccount = { | |
id: getId(), | |
firstName: 'Jonathan', | |
lastName: 'Philipos', | |
email: 'jonathan@det.io', | |
phoneNumber: '867-5309', | |
isOnline: 'online', |