aboutsummaryrefslogtreecommitdiff
path: root/misc/gn_installation_notes.txt
diff options
context:
space:
mode:
authorZachary Sloan2013-07-03 23:03:49 +0000
committerZachary Sloan2013-07-03 23:03:49 +0000
commitd27e52855d1aa442cebce7901815a673cf34f8b8 (patch)
tree22fffd9f7c425d321b9ab952bbe28948dab07274 /misc/gn_installation_notes.txt
parent253df1a5adb060df3202de5b80a5065a3614e368 (diff)
downloadgenenetwork2-d27e52855d1aa442cebce7901815a673cf34f8b8.tar.gz
Updated notes and created requirements.txt file
Diffstat (limited to 'misc/gn_installation_notes.txt')
-rw-r--r--misc/gn_installation_notes.txt38
1 files changed, 37 insertions, 1 deletions
diff --git a/misc/gn_installation_notes.txt b/misc/gn_installation_notes.txt
index bad21226..565cf9f5 100644
--- a/misc/gn_installation_notes.txt
+++ b/misc/gn_installation_notes.txt
@@ -1,6 +1,37 @@
+UFW - default firewall confirguation tool for Ubuntu; eases iptables firewall configuration
+
+Enable UFW:
+sudo ufw enable
+Check status of UFW:
+sudo ufw status verbose
+
+Limit ssh:
+sudo ufw limit ssh
+
+Enable http, https:
+sudo ufw allow http
+sudo ufw allow https
+
+===========================================
+
+http://evilrouters.net/2011/02/18/using-etckeeper-with-git-on-ubuntu/
+
+Install etckeeper:
+sudo apt-get install etckeeper
+
+Edit /etc/etckeeper/etckeeper.conf to comment out VCS="bzr" and comment in VCS="git"
+
+Initialize repository:
+sudo etckeeper init
+
+Do initial commit:
+sudo etckeeper commit "Initial commit."
+
+===========================================
+
Get git:
-sudo apt-get install git-core
+sudo apt-get install git
===========================================
@@ -16,6 +47,11 @@ git pull origin flask(or whatever the branch is)
Search for package with a specified file that can be installed with apt-get
apt-file search _______
+============================================
+
+Install pip:
+sudo apt-get install python-pip
+
Install from requirements.txt:
pip install -r gene/wqflask/requirements.txt -t ve27