mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Signed-off-by: Filipe Laíns <lains@archlinux.org> Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
41 lines
1.3 KiB
Text
41 lines
1.3 KiB
Text
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 the necessary packages:
|
|
|
|
# pacman -S --needed php php-sqlite sqlite words fortune-mod \
|
|
python python-sqlalchemy python-alembic \
|
|
python-fastapi uvicorn nginx \
|
|
python-authlib python-itsdangerous python-httpx \
|
|
words fortune-mod
|
|
|
|
Ensure to enable the pdo_sqlite extension in php.ini.
|
|
|
|
3) Copy conf/config.dev to conf/config and replace YOUR_AUR_ROOT by the absolute
|
|
path to the root of your aurweb clone. sed can do both tasks for you:
|
|
|
|
$ sed -e "s;YOUR_AUR_ROOT;$PWD;g" conf/config.dev > conf/config
|
|
|
|
Note that when the upstream config.dev is updated, you should compare it to
|
|
your conf/config, or regenerate your configuration with the command above.
|
|
|
|
4) Prepare the testing database:
|
|
|
|
$ cd /path/to/aurweb/
|
|
|
|
$ AUR_CONFIG=conf/config python -m aurweb.initdb
|
|
|
|
$ schema/gendummydata.py data.sql
|
|
$ sqlite3 aurweb.sqlite3 < data.sql
|
|
|
|
5) Run the test server:
|
|
|
|
$ AUR_CONFIG=conf/config python -m aurweb.spawn
|