Sen descrición

Patrick Uiterwijk 4aacad5dfb Add the initial gpg signature check code %!s(int64=8) %!d(string=hai) anos
alembic 1c6b975e07 modify alembic script since the notification in issues %!s(int64=8) %!d(string=hai) anos
doc 4e920083a6 Adjust syntax for a note %!s(int64=8) %!d(string=hai) anos
ev-server e89a199fb9 Simplify our logging on the @ralph's advice %!s(int64=8) %!d(string=hai) anos
fedmsg.d e0a21ed16c Add the config file to initialize the consumer %!s(int64=8) %!d(string=hai) anos
files 78afb38191 Implement scanning of attached files for viruses %!s(int64=8) %!d(string=hai) anos
milters 5a54a4a239 Fix the milter to get it working %!s(int64=8) %!d(string=hai) anos
pagure 4aacad5dfb Add the initial gpg signature check code %!s(int64=8) %!d(string=hai) anos
pagure-ci 219d3119c0 Do not repeat information from the doc, rather point to it %!s(int64=8) %!d(string=hai) anos
tests c68e929ed0 Fix unit-tests %!s(int64=8) %!d(string=hai) anos
webhook-server 8e02d4283f Fix how the web-hook server determine the project and its username %!s(int64=8) %!d(string=hai) anos
.gitignore 8c310f62ab Custom SMTP settings %!s(int64=8) %!d(string=hai) anos
LICENSE 96994225ac Add the GPLv2 LICENSE file %!s(int64=10) %!d(string=hai) anos
MANIFEST.in 1edf44a551 Include the pagure-ci module in the releases %!s(int64=8) %!d(string=hai) anos
README.rst a4a4c1a799 Allow <span> tags so that the README shows fine %!s(int64=8) %!d(string=hai) anos
UPGRADING.rst 4912c93947 Release 2.3 %!s(int64=8) %!d(string=hai) anos
createdb.py 1f6bd5001e Figure a way to populate the ACL table from the configuration file by running createdb.py %!s(int64=9) %!d(string=hai) anos
dev-data.py 779aa73862 pagure development data %!s(int64=8) %!d(string=hai) anos
nosetests 38f510105b Added commit comparison view %!s(int64=8) %!d(string=hai) anos
pagure_logo.svg 43167e1e09 update the logo %!s(int64=8) %!d(string=hai) anos
requirements-fedora.txt 1a932de7a7 Add binaryornot to the list of dependencies %!s(int64=8) %!d(string=hai) anos
requirements.txt 4aacad5dfb Add the initial gpg signature check code %!s(int64=8) %!d(string=hai) anos
rundocserver.py f8556c5a0f Add a rundocserver script allowing to run the documentation server %!s(int64=9) %!d(string=hai) anos
runserver.py 94ab5a12c8 Setup the PAGURE_CONFIG env variable before importing pagure's app %!s(int64=8) %!d(string=hai) anos
runtests.sh 51656a4f77 Undo specifying a config file to run the tests and just bail on jenkins %!s(int64=8) %!d(string=hai) anos
setup.py 3f88c94129 Add doc for development and configuring pagure CI %!s(int64=8) %!d(string=hai) anos
tests_requirements.txt 1d397ea33a No space between name and version %!s(int64=9) %!d(string=hai) anos

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



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

* Install the needed system libraries::

sudo dnf install git python-virtualenv libgit2-devel \
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``

* Retrieve the sources::

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

* Install dependencies

* create the virtualenv::

virtualenv 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 {repos,docs,forks,tickets,requests}


* Create the inital database scheme::

python createdb.py


* Run it::

./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