暫無描述

Pierre-Yves Chibon f523b91d3a Fix the unit-tests 5 年之前
alembic 3f97f6a980 Integrate repoSpanner 5 年之前
dev e9046e891c Drop the dependency on flask-multistatic 5 年之前
doc 0c654b7796 Make the term we call a Project configurable by the theme 5 年之前
fedmsg.d e0a21ed16c Add the config file to initialize the consumer 7 年之前
files 38766c338d Drop unneeded commands in pagure.spec prep stage 5 年之前
pagure f523b91d3a Fix the unit-tests 5 年之前
pagure-ev 4b2e7f524b pagure-ev: Use Trololio instead of Trollius directly 5 年之前
pagure-milters 55fa35a37f Declare Python 3 support and prefer it in packaging 5 年之前
tests f523b91d3a Fix the unit-tests 5 年之前
utils dcf6f61a96 Use unicode_literals everywhere for Py3 compatibility 6 年之前
.cico.pipeline 9983f2c046 Another attempt to sync the files off jenkins 5 年之前
.flake8 d28de1f392 Configure flake8 to ignore E203 - black introduces it 5 年之前
.gitignore d2915898cd Add hooks to repoSpanner setups 5 年之前
.pylintrc 254a80ed21 pylintrc: be more specific about generated-members 7 年之前
LICENSE 96994225ac Add the GPLv2 LICENSE file 9 年之前
MANIFEST.in f8d23a53ad Clean up the MANIFEST.in file since we dropped some folders 6 年之前
README.rst e78dc3a2b6 Update the documentation 5 年之前
UPGRADING.rst bf2036739c Release 3.13.1 6 年之前
createdb.py 55fa35a37f Declare Python 3 support and prefer it in packaging 5 年之前
dev-data.py dcf6f61a96 Use unicode_literals everywhere for Py3 compatibility 6 年之前
nosetests 969b905b62 Add performance totals plugin 7 年之前
nosetests3 f694de1cc3 Add utility scripts to run the test suite with python3 6 年之前
pagure_logo.svg 43167e1e09 update the logo 8 年之前
requirements-ci.txt 33bdcafbcf trollius → trololio 5 年之前
requirements-ev.txt 33bdcafbcf trollius → trololio 5 年之前
requirements-fedora.txt 55fa35a37f Declare Python 3 support and prefer it in packaging 5 年之前
requirements-optional.txt 71c8894fd4 Re-structure how are requirements are listed 7 年之前
requirements-webhook.txt 33bdcafbcf trollius → trololio 5 年之前
requirements.txt 570ce621d5 Don't use the latest markdown for now 5 年之前
run_ci_tests.sh e8280f291b Drop showing the first failure now that logs are properly synced out 5 年之前
rundocserver.py 55fa35a37f Declare Python 3 support and prefer it in packaging 5 年之前
runserver.py 55fa35a37f Declare Python 3 support and prefer it in packaging 5 年之前
runtests.py 585ea14f68 Ensure test fail on jenkins as well by propagating the return code 5 年之前
runworker.py 55fa35a37f Declare Python 3 support and prefer it in packaging 5 年之前
setup.py ebb628270b Fix the regex for the changes made by black 5 年之前
tests_requirements.txt 60eeb6dda7 Include coverage in the list of requirements for the tests 5 年之前
tox.ini 17433cdf6b Typo 5 年之前

README.rst

Pagure
======

:Author: Pierre-Yves Chibon


Pagure is a git-centered forge, python based using pygit2.

With pagure you can host your project with its documentation, let your users
report issues or request enhancements using the ticketing system and build your
community of contributors by allowing them to fork your projects and contribute
to it via the now-popular pull-request mechanism.


Homepage: https://pagure.io/pagure

See it at work: https://pagure.io


Playground version: https://stg.pagure.io

If you have any questions or just would like to discuss about pagure,
feel free to drop by on IRC in the channel ``#pagure`` of the freenode server


About its name
==============

The name Pagure is taken from the French word 'pagure'. Pagure in French is used as the
common name for the crustaceans from the `Paguroidea `_
superfamily, which is basically the family of the Hermit crabs.

Originating from French it is pronounced with a strong 'g' as you can hear
on `this recording `_.


Get it running
==============

There are several options when it comes to a development environment. Vagrant
will provide you with a virtual machine which you can develop on, or you can
install it directly on your host machine.

Vagrant
^^^^^^^

For a more thorough introduction to Vagrant, see
https://fedoraproject.org/wiki/Vagrant.

An example Vagrantfile is provided as ``Vagrantfile.example``. To use it,
just copy it and install Vagrant::

$ cp dev/Vagrantfile.example Vagrantfile
$ sudo dnf install ansible libvirt vagrant-libvirt vagrant-sshfs vagrant-hostmanager
$ vagrant up

If you get this error ``Block in synced_folders: Internal error. Invalid: sshfs``,
when you run ``vagrant up`` , you need to install vagrant sshfs plugin, which can be done by::

$ vagrant plugin install vagrant--sshfs

and then::

$ vagrant up

The default ``Vagrantfile`` forwards ports from the host to the guest,
so you can interact with the application as if it were running on your
host machine.

.. note::
``vagrant-hostmanager`` will automatically maintain /etc/hosts for you so you
can access the development environment from the host using its hostname, which
by default is ``pagure-dev.example.com``. You can choose not to use this
functionality by simply not installing the ``vagrant-hostmanager`` plugin, but
if you want Pagure to provide valid URLs in the UI for git repositories, you
will need to adjust Pagure's configuration found in ~/pagure.cfg on the guest.

When the vagrant VM is up and running, connect to it with::

$ vagrant ssh

This will log you into the VM as the user ``vagrant`` which has a couple of aliases
preconfigured::

$ pstart # Starts pagure, the workers and other tasks
$ pstop # Stops all those tasks again
$ pstatus # Shows pagure status

The Vagrant pagure doesn't have its own log file, use ``journalctl -f`` to
show the pagure output. The verbosity can be configured in the pagure config file
with the ``LOGGING`` parameter.

Docker Compose
^^^^^^^^^^^^^^
Create the folder that will receive the projects, forks, docs, requests and
tickets' git repo::

mkdir -p lcl/{repos,remotes,attachments,releases}

A docker compose environment is available to run pagure. First use the following
command to build the containers. ::

$ docker-compose -f dev/docker-compose.yml build

Once all the containers are built, run the following command to start the containers. ::

$ docker-compose -f dev/docker-compose.yml up -d

Once all the containers have started, you can access pagure on http://localhost:5000

To stop the containers, run the following ::

$ docker-compose -f dev/docker-compose.yml stop

More information about docker-compose cli see https://docs.docker.com/compose/reference/.

Running the unit-tests
**********************

To run the unit-tests, there is container available with all the dependencies needed.

Use the following command to run the tests ::

$ ./dev/run-tests-docker.py

This command will build a fedora based container and execute the test suite.

If you wish to execute the test suite on a centos based container run the following command ::

$ ./dev/run-tests-docker.py --centos

When the test container image has been built you can skip the building step to save time
and run directly the test suite. ::

$ ./dev/run-tests-docker.py --skip-build
$ ./dev/run-tests-docker.py --centos --skip-build

You can also run a single test case ::

$ ./dev/run-tests-docker.py tests/test_pagure_flask_ui_priorities.py

Or a single test ::

$ ./dev/run-tests-docker.py tests/test_pagure_flask_ui_priorities.py:PagureFlaskPrioritiestests.test_ticket_with_no_priority

You can also get `run-tests-docker` help ::

$ ./dev/run-tests-docker.py --help

Manually
^^^^^^^^

* Install the needed system libraries::

sudo dnf install git python3 libgit2-devel redis \
libjpeg-devel gcc libffi-devel redhat-rpm-config

.. note:: Do note the version of libgit2 that you install, for example
in ``libgit2-0.23.4-1`` you need to keep in mind the ``0.23``

.. note:: On RHEL and derivative (CentOS, Scientific Linux) there is no
`python3` package. Just `python36` or `python34` available in
EPEL 7 (EPEL 6 only has `python34`). Choose the one you prefer
(3.6 is newer and generally a better choice).

* Retrieve the sources::

git clone https://pagure.io/pagure.git
cd pagure

* Install dependencies

* create the virtual environment (use `pytohn3.X` explicitly on EPEL)::

python3 -m venv pagure_env
source ./pagure_env/bin/activate

* Install the correct version of pygit2::

pip install pygit2==.*

So in our example::

pip install pygit2==0.23.*

* Install the rest of the dependencies::

pip install -r requirements.txt


* Create the folder that will receive the projects, forks, docs, requests and
tickets' git repo::

mkdir -p lcl/{repos,remotes,attachments,releases}

* Copy and edit the alembic.ini file (especially the ``script_location`` key)::

cp files/alembic.ini .
vim alembic.ini

* Set the ``script_location`` to ``alembic``, ie: the folder where the revisions
are stored, relative to the location of the ``alembic.ini`` file.

* Create the inital database scheme::

python createdb.py --initial alembic.ini

* Enable and start redis server::

systemctl enable redis
systemctl start redis

* Start a worker, in one terminal::

./runworker.py

* Run the application, in another terminal::

./runserver.py


* To get some profiling information you can also run it as::

./runserver.py --profile


This will launch the application at http://127.0.0.1:5000


* To run unit-tests on pagure

* Install the dependencies::

pip install -r tests_requirements.txt

* Run it::

./runtests.sh

.. note:: While testing for worker tasks, pagure uses celery in /usr/bin/
Celery then looks for eventlet (which we use for testing only) at
system level and not in virtual environment. You will need to
install eventlet outside of your virtual environment if you are
using one.