https://github.com/lu-zero/plaid
Patchwork workalike made using Flask
https://github.com/lu-zero/plaid
Last synced: about 1 year ago
JSON representation
Patchwork workalike made using Flask
- Host: GitHub
- URL: https://github.com/lu-zero/plaid
- Owner: lu-zero
- License: gpl-2.0
- Created: 2013-10-16T13:04:28.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2016-02-15T03:29:43.000Z (over 10 years ago)
- Last Synced: 2024-05-02T00:16:35.708Z (about 2 years ago)
- Language: Python
- Size: 706 KB
- Stars: 6
- Watchers: 5
- Forks: 5
- Open Issues: 25
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
plaid
-----
Simple patch tracking system based on Flask. It is similar to the more mature
and featureful [patchwork](http://jk.ozlabs.org/projects/patchwork/), but focuses on
patch series.
Deploy
======
Plaid is written using Flask, so the usual procedure applies:
* Set a virtualenv
```
# virtualenv --no-site-packages venv
# source venv/bin/activate
```
* Install the dependencies
```
# pip install -r requirements.txt
```
* Use `manage.py` to populate the database (use `run_importer.sh` to use the
test mailbox
```
# python manage.py db init
# python manage.py db migrate
# python manage.py db upgrade
# python manage.py user create -n username -e your@email -p pwd -r admin
# python manage.py project create -n projectname -l listname -i listid -d "Description"
```
* Try locally
```
# python run.py
```