| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
To get a pretty version of this document, run
$ markdown README > README.html
See LICENSE file.
See AUTHORS file.
You can look at the packages archweb uses by looking at the pyproject.toml file; it is best to use uv to handle these. If you insist on (Arch Linux) packages, you probably want the following:
Run uv sync.
Initialize git submodules:
git submodule update --init --recursive
Activate the virtualenv.
Copy local_settings.py.example to local_settings.py and modify.
Migrate changes.
uv run ./manage.py migrate
Load the fixtures to pre-populate some data. If you don't want some of the provided data, adjust the file glob accordingly.
uv run ./manage.py loaddata main/fixtures/*.json uv run ./manage.py loaddata devel/fixtures/*.json uv run ./manage.py loaddata mirrors/fixtures/*.json uv run ./manage.py loaddata releng/fixtures/*.json
Use the following commands to start a service instance:
uv run ./manage.py runserver
Populate the database with real data (optional) You can optionally populate your database with real package data from an Arch Linux mirror:
wget https://geo.mirror.pkgbuild.com/core/os/x86_64/core.db.tar.gz uv run ./manage.py reporead x86_64 core.db.tar.gz # Package file listing wget https://geo.mirror.pkgbuild.com/core/os/x86_64/core.files.tar.gz uv run ./manage.py reporead --filesonly x86_64 core.files.tar.gz
Customization notes: Modify the URL path and architecture argument (x86_64) if you need a different architecture or repository (e.g., extra). If the default mirror experiences downtime or slow speeds, you can swap the base URL with another mirror. Find a complete, up-to-date list of active mirrors at the Arch Linux Mirror Status page.
Database Updates for Added/Removed packages
sqlite3 archweb.db < packages/sql/update.sqlite3.sql
For PostgreSQL use packages/sql/update.postgresql_psycopg2.sql
To be able to create an account on your test environment an SMTP server is required. A simple debugging SMTP server can be setup using Python and aiosmtpd.
Install smtp group
uv sync --group smtp
Run the server
uv run python -m aiosmtpd -n -l localhost:1025
In local_settings.py add entries to set EMAIL_HOST to 'localhost' and EMAIL_PORT to 1025.
To run unittests execute the following commands:
make collectstatic
make test
Running coverage:
make coverage
make open-coverage
To use the Django Debug toolbar install django-debug-toolbar and in local_settings.py set DEBUG_TOOLBAR to True.
Archweb provides multiple management commands for importing various sorts of data. An overview of commands:
The binaries required for iPXE based netboot are updated by copying them from the ipxe package to the static content directory (with the run_ipxe script the binaries may be tested beforehand):
cp -v /usr/share/ipxe/x86_64/ipxe-arch.efi /usr/share/ipxe/ipxe-arch.{ipxe,lkrn} sitestatic/releng
Afterwards a detached PGP signature using a valid WKD enabled packager key is created for each file:
for artifact in sitestatic/netboot/*.{efi,pxe,lkrn}; do
gpg --sender "User Name <your@mail.address>" --detach-sign "$artifact"
done
Arch Linux has an Ansible role for Archweb in their infrastructure repo.
vim: set syntax=markdown et:
| Back | FazBrowse Home | New Git URL |