aboutsummaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorZachary Sloan2012-09-12 18:22:45 -0500
committerZachary Sloan2012-09-12 18:22:45 -0500
commitf1d7725c5f7529c5f587bab4ea89d3467b903ddb (patch)
tree899dd0c7fe717412bc91b93661fd0498fd227e2f /misc
parente7e3117695ef86a28df96cf32bfb66f6da2bc404 (diff)
downloadgenenetwork2-f1d7725c5f7529c5f587bab4ea89d3467b903ddb.tar.gz
Worked towards correctly passing form data to correlation page and addressed various bugs that arose while doing so
Diffstat (limited to 'misc')
-rw-r--r--misc/byobu_commands.txt6
-rw-r--r--misc/find.txt1
-rw-r--r--misc/notes.txt41
-rw-r--r--misc/python_stuff.txt1
-rw-r--r--misc/runserver.txt1
-rw-r--r--misc/virtual_env.txt1
6 files changed, 41 insertions, 10 deletions
diff --git a/misc/byobu_commands.txt b/misc/byobu_commands.txt
deleted file mode 100644
index 48e85396..00000000
--- a/misc/byobu_commands.txt
+++ /dev/null
@@ -1,6 +0,0 @@
-byobu -RD
-control-a then :multiuser on
-control-a then :acladd sam
-
-type: screen -list for sessions
-screen -r zas1024/25679.byobu
diff --git a/misc/find.txt b/misc/find.txt
deleted file mode 100644
index 5c792d80..00000000
--- a/misc/find.txt
+++ /dev/null
@@ -1 +0,0 @@
-find | grep _____
diff --git a/misc/notes.txt b/misc/notes.txt
new file mode 100644
index 00000000..be023c1d
--- /dev/null
+++ b/misc/notes.txt
@@ -0,0 +1,41 @@
+To get server running:
+
+Start up virtual environment:
+source ~/ve27/bin/activate
+
+To set WQFLASK_SETTINGS environment variable:
+export WQFLASK_SETTINGS=~/gene/wqflask/cfg/zach_settings.py (or wherever file is located)
+
+To search for commands in history if necessary:
+history | grep "(whatever is being searched for)"
+
+Run server:
+python runserver.py
+
+===========================================
+
+Start screen session
+byobu -RD (to start)
+control-a then :multiuser on
+control-a then :acladd sam
+
+type: screen -list for sessions
+screen -r zas1024/25679.byobu
+
+or if only one:
+
+screen -r zas1024/
+
+===========================================
+
+Coffeescript Stuff:
+
+coffee -c (filename)
+coffee -c -w (to watch for changes and recompile)
+coffee --help (for information about setting options)
+
+===========================================
+
+Python stuff:
+
+Classes should always inherit "object" \ No newline at end of file
diff --git a/misc/python_stuff.txt b/misc/python_stuff.txt
deleted file mode 100644
index f36fe338..00000000
--- a/misc/python_stuff.txt
+++ /dev/null
@@ -1 +0,0 @@
-Classes should always inherit "object" \ No newline at end of file
diff --git a/misc/runserver.txt b/misc/runserver.txt
deleted file mode 100644
index 71e3dfd7..00000000
--- a/misc/runserver.txt
+++ /dev/null
@@ -1 +0,0 @@
-python runserver.py
diff --git a/misc/virtual_env.txt b/misc/virtual_env.txt
deleted file mode 100644
index 7a8f20be..00000000
--- a/misc/virtual_env.txt
+++ /dev/null
@@ -1 +0,0 @@
-source ~/ve27/bin/activate