]> git.evergreen-ils.org Git - working/random.git/blob - README
multi-host support for live tester
[working/random.git] / README
1 Quick way to install and test Evergreen using this branch:
2
3 Install Debian Wheezy and make sure the account you're using has sudo privileges without having to specify a password.
4
5 You can ensure the latter by entering:
6
7     sudo visudo
8
9 And changing the line corresponding to your user to resemble this line:
10
11     accountusername ALL=(ALL) NOPASSWD: ALL
12
13 Then after saving and exiting that file, and logging off and re-logging back on as that user, create a script (for example, run_me.sh) containing these lines (with no indentation):
14
15     #!/bin/bash
16     sudo apt-get -q -y install git-core
17     git clone git://git.evergreen-ils.org/working/random.git
18     cd random/
19     git checkout -b wheezy origin/collab/phasefx/wheezy_installer
20     cd installer/wheezy
21     time sudo ./eg_wheezy_installer.sh -y -a -s -t
22
23 Then to fire it off, do:
24
25     chmod +x run_me.sh
26     ./run_me.sh
27
28 This will install Evergreen master along with the stock test data, and run QA tests against Evergreen and that data.  You can tweak the parameters passed to eg_wheezy_installer.sh to change this behavior.
29