summaryrefslogtreecommitdiffstats
path: root/TESTING
diff options
context:
space:
mode:
authorMark Weiman <mark.weiman@markzz.com>2017-04-12 06:56:16 +0200
committerLukas Fleischer <lfleischer@archlinux.org>2017-04-12 07:26:23 +0200
commit906a8f12cc3f0d9cfd595421c450bbcffde67c18 (patch)
treeb0493f183875093a6a33b73b2bcf60ada815efb2 /TESTING
parent2c3c8417fb69ab84140e9b9b0ce17abf1e95229c (diff)
downloadaur-906a8f12cc3f0d9cfd595421c450bbcffde67c18.tar.gz
aur-906a8f12cc3f0d9cfd595421c450bbcffde67c18.tar.xz
Add TESTING instructions for web interface
Add instructions to test aurweb's web interface via the PHP built-in web server. Signed-off-by: Mark Weiman <mark.weiman@markzz.com> Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'TESTING')
-rw-r--r--TESTING32
1 files changed, 32 insertions, 0 deletions
diff --git a/TESTING b/TESTING
new file mode 100644
index 00000000..d2c97d9d
--- /dev/null
+++ b/TESTING
@@ -0,0 +1,32 @@
+Setup Testing Environment
+=========================
+
+Note that this setup is only to test the web interface. If you need to have a
+full aurweb instance with cgit, ssh interface, etc, follow the directions in
+INSTALL.
+
+1) Clone the aurweb project:
+
+ $ git clone git://git.archlinux.org/aurweb.git
+
+2) Install php and necessary modules:
+
+ # pacman -S php php-sqlite sqlite
+
+3) Prepare the testing database:
+
+ $ cd /path/to/aurweb/schema
+ $ make
+ $ ./gendummydata.py out.sql
+ $ sqlite3 ../aurweb.sqlite3 < aur-schema-sqlite.sql
+ $ sqlite3 ../aurweb.sqlite3 < out.sql
+
+4) Copy conf/config.proto to conf/config and adjust the configuration
+ (pay attention to disable_http_login, enable_maintenance and aur_location).
+
+ Be sure to change backend to sqlite and name to the file location of your
+ created test database.
+
+5) Run the PHP built-in web server:
+
+ $ AUR_CONFIG='/path/to/aurweb/conf/config' php -S localhost:8080 -t /path/to/aurweb/web/html