|
Pierre-Yves Chibon |
fe5017 |
Pagure
|
|
Pierre-Yves Chibon |
2088eb |
======
|
|
Pierre-Yves Chibon |
2088eb |
|
|
Pierre-Yves Chibon |
306158 |
:Author: Pierre-Yves Chibon <pingou@pingoured.fr></pingou@pingoured.fr>
|
|
Pierre-Yves Chibon |
2088eb |
|
|
Pierre-Yves Chibon |
2088eb |
|
|
Pierre-Yves Chibon |
306158 |
Pagure is a git-centered forge, python based using pygit2.
|
|
Pierre-Yves Chibon |
78e123 |
|
|
Pierre-Yves Chibon |
306158 |
With pagure you can host your project with its documentation, let your users
|
|
Pierre-Yves Chibon |
306158 |
report issues or request enhancements using the ticketing system and build your
|
|
Pierre-Yves Chibon |
306158 |
community of contributors by allowing them to fork your projects and contribute
|
|
Pierre-Yves Chibon |
306158 |
to it via the now-popular pull-request mechanism.
|
|
Pierre-Yves Chibon |
2088eb |
|
|
Pierre-Yves Chibon |
2088eb |
|
|
Rahul Bajaj |
29b73b |
Homepage: https://pagure.io/pagure
|
|
Stanislav Ochotnicky |
6739d2 |
|
|
Pierre-Yves Chibon |
4951c5 |
See it at work: https://pagure.io
|
|
Pierre-Yves Chibon |
4951c5 |
|
|
Pierre-Yves Chibon |
306158 |
|
|
Pierre-Yves Chibon |
4951c5 |
Playground version: https://stg.pagure.io
|
|
Pierre-Yves Chibon |
4951c5 |
|
|
Pierre-Yves Chibon |
22c46f |
|
|
Pierre-Yves Chibon |
bfbc7c |
|
|
Pierre-Yves Chibon |
2088eb |
Get it running
|
|
Pierre-Yves Chibon |
2088eb |
==============
|
|
Pierre-Yves Chibon |
2088eb |
|
|
Jeremy Cline |
4e3668 |
There are several options when it comes to a development environment. Vagrant
|
|
Jeremy Cline |
4e3668 |
will provide you with a virtual machine which you can develop on, or you can
|
|
Jeremy Cline |
4e3668 |
install it directly on your host machine.
|
|
Jeremy Cline |
4e3668 |
|
|
Jeremy Cline |
4e3668 |
Vagrant
|
|
Jeremy Cline |
4e3668 |
^^^^^^^
|
|
Jeremy Cline |
4e3668 |
|
|
Jeremy Cline |
4e3668 |
For a more thorough introduction to Vagrant, see
|
|
Jeremy Cline |
4e3668 |
https://fedoraproject.org/wiki/Vagrant.
|
|
Jeremy Cline |
4e3668 |
|
|
Jeremy Cline |
4e3668 |
An example Vagrantfile is provided as ``Vagrantfile.example``. To use it,
|
|
Jeremy Cline |
4e3668 |
just copy it and install Vagrant::
|
|
Jeremy Cline |
4e3668 |
|
|
Pierre-Yves Chibon |
dedefc |
$ cp dev/Vagrantfile.example Vagrantfile
|
|
Jeremy Cline |
4e3668 |
$ sudo dnf install ansible libvirt vagrant-libvirt vagrant-sshfs vagrant-hostmanager
|
|
Jeremy Cline |
4e3668 |
$ vagrant up
|
|
Jeremy Cline |
4e3668 |
|
|
Jeremy Cline |
4e3668 |
The default ``Vagrantfile`` forwards ports from the host to the guest,
|
|
Jeremy Cline |
4e3668 |
so you can interact with the application as if it were running on your
|
|
Jeremy Cline |
4e3668 |
host machine.
|
|
Jeremy Cline |
4e3668 |
|
|
Jeremy Cline |
4e3668 |
.. note::
|
|
Jeremy Cline |
4e3668 |
``vagrant-hostmanager`` will automatically maintain /etc/hosts for you so you
|
|
Jeremy Cline |
4e3668 |
can access the development environment from the host using its hostname, which
|
|
Jeremy Cline |
4e3668 |
by default is ``pagure-dev.example.com``. You can choose not to use this
|
|
Jeremy Cline |
4e3668 |
functionality by simply not installing the ``vagrant-hostmanager`` plugin, but
|
|
Jeremy Cline |
4e3668 |
if you want Pagure to provide valid URLs in the UI for git repositories, you
|
|
Jeremy Cline |
4e3668 |
will need to adjust Pagure's configuration found in ~/pagure.cfg on the guest.
|
|
Jeremy Cline |
4e3668 |
|
|
Jeremy Cline |
4e3668 |
|
|
Jeremy Cline |
4e3668 |
Manually
|
|
Jeremy Cline |
4e3668 |
^^^^^^^^
|
|
Jeremy Cline |
4e3668 |
|
|
Pierre-Yves Chibon |
5dc04a |
* Install the needed system libraries::
|
|
Pierre-Yves Chibon |
306158 |
|
|
alunux |
835397 |
sudo dnf install git python2-virtualenv libgit2-devel \
|
|
Pierre-Yves Chibon |
306158 |
libjpeg-devel gcc libffi-devel redhat-rpm-config
|
|
Pierre-Yves Chibon |
306158 |
|
|
Pierre-Yves Chibon |
a4a4c1 |
.. note:: Do note the version of libgit2 that you install, for example
|
|
Pierre-Yves Chibon |
a4a4c1 |
in ``libgit2-0.23.4-1`` you need to keep in mind the ``0.23``
|
|
Pierre-Yves Chibon |
306158 |
|
|
alunux |
835397 |
|
|
alunux |
835397 |
.. note:: On Fedora 23 and earlier or on RHEL and derivative (CentOS,
|
|
alunux |
835397 |
Scientific Linux) the package `python2-virtualenv` is named
|
|
alunux |
835397 |
`python-virtualenv`
|
|
alunux |
835397 |
|
|
Pierre-Yves Chibon |
2088eb |
* Retrieve the sources::
|
|
Pierre-Yves Chibon |
2088eb |
|
|
Rahul Bajaj |
29b73b |
git clone https://pagure.io/pagure.git
|
|
Daniel Mach |
d27126 |
cd pagure
|
|
Daniel Mach |
d27126 |
|
|
Daniel Mach |
d27126 |
* Install dependencies
|
|
Daniel Mach |
d27126 |
|
|
Pierre-Yves Chibon |
306158 |
* create the virtualenv::
|
|
Daniel Mach |
d27126 |
|
|
Pierre-Yves Chibon |
306158 |
virtualenv pagure_env
|
|
Pierre-Yves Chibon |
306158 |
source ./pagure_env/bin/activate
|
|
Daniel Mach |
d27126 |
|
|
Pierre-Yves Chibon |
306158 |
* Install the correct version of pygit2::
|
|
Daniel Mach |
d27126 |
|
|
Pierre-Yves Chibon |
306158 |
pip install pygit2==<version found="" libgit2="" of="">.*</version>
|
|
Pierre-Yves Chibon |
2088eb |
|
|
Pierre-Yves Chibon |
306158 |
So in our example::
|
|
Pierre-Yves Chibon |
2088eb |
|
|
Pierre-Yves Chibon |
306158 |
pip install pygit2==0.23.*
|
|
Pierre-Yves Chibon |
2088eb |
|
|
Pierre-Yves Chibon |
306158 |
* Install the rest of the dependencies::
|
|
Pierre-Yves Chibon |
2088eb |
|
|
Pierre-Yves Chibon |
306158 |
pip install -r requirements.txt
|
|
Pierre-Yves Chibon |
2088eb |
|
|
Sayan Chowdhury |
367479 |
|
|
Pierre-Yves Chibon |
306158 |
* Create the folder that will receive the projects, forks, docs, requests and
|
|
Pierre-Yves Chibon |
306158 |
tickets' git repo::
|
|
Pierre-Yves Chibon |
306158 |
|
|
Ompragash |
cb06ea |
mkdir -p lcl/{repos,docs,forks,tickets,requests,remotes,attachments,releases}
|
|
Pierre-Yves Chibon |
306158 |
|
|
Pierre-Yves Chibon |
306158 |
|
|
Pierre-Yves Chibon |
306158 |
* Create the inital database scheme::
|
|
Daniel Mach |
d27126 |
|
|
Sayan Chowdhury |
367479 |
python createdb.py
|
|
Sayan Chowdhury |
367479 |
|
|
Pierre-Yves Chibon |
ef25df |
* Start a worker, in one terminal::
|
|
Sayan Chowdhury |
367479 |
|
|
Pierre-Yves Chibon |
ef25df |
./runworker.py
|
|
Pierre-Yves Chibon |
ef25df |
|
|
Pierre-Yves Chibon |
ef25df |
* Run the application, in another terminal::
|
|
Pierre-Yves Chibon |
2088eb |
|
|
Pierre-Yves Chibon |
40cf0a |
./runserver.py
|
|
Pierre-Yves Chibon |
2088eb |
|
|
Pierre-Yves Chibon |
2088eb |
|
|
Pierre-Yves Chibon |
b42030 |
* To get some profiling information you can also run it as::
|
|
Pierre-Yves Chibon |
b42030 |
|
|
Daniel Mach |
d27126 |
./runserver.py --profile
|
|
Pierre-Yves Chibon |
b42030 |
|
|
Pierre-Yves Chibon |
b42030 |
|
|
Pierre-Yves Chibon |
d0bf8c |
This will launch the application at http://127.0.0.1:5000
|
|
rahul Bajaj |
c9695a |
|
|
rahul Bajaj |
c9695a |
|
|
rahul Bajaj |
c9695a |
* To run unit-tests on pagure
|
|
rahul Bajaj |
c9695a |
|
|
rahul Bajaj |
c9695a |
* Install the dependencies::
|
|
rahul Bajaj |
c9695a |
|
|
rahul Bajaj |
c9695a |
pip install -r tests_requirements.txt
|
|
rahul Bajaj |
c9695a |
|
|
rahul Bajaj |
c9695a |
* Run it::
|
|
rahul Bajaj |
c9695a |
|
|
rahul Bajaj |
c9695a |
./runtests.sh
|
|
Vivek Anand |
6a3d0f |
|
|
Vivek Anand |
6a3d0f |
.. note:: While testing for worker tasks, pagure uses celery in /usr/bin/
|
|
Vivek Anand |
6a3d0f |
Celery then looks for eventlet (which we use for testing only) at
|
|
Vivek Anand |
6a3d0f |
system level and not in virtualenv. You will need to install eventlet
|
|
Vivek Anand |
6a3d0f |
outside of your virtualenv if you are using one.
|