a-kr / diffcommenter

Webapp for code review

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

diffcommenter

A simple webapp for code review.

Requirements

  • Python 2.7
  • Django 1.5
  • psycopg2
  • PostgreSQL 9.1
  • (optionally) gunicorn

Installation

Create Postgres superuser da and database dc:

sudo -u postgres createuser -s da
createdb -U da dc

Clone the repository and initialize the database structure:

cd ~
git clone https://github.com/a-kr/diffcommenter.git
cd diffcommenter/diffserver
cp settings_local.example.py settings_local.py
make syncdb
make test

Running the development server

make runserver

Open http://localhost:8200/ in your browser and see if it works.

Running with gunicorn

make run
make stop

The server will run on port 8200.

Usage

Start the diffcommenter server (see above), open the main page in browser and follow the instructions displayed there.

Default user: da:111111

About

Webapp for code review

License:MIT License


Languages

Language:Python 62.7%Language:JavaScript 18.6%Language:HTML 10.5%Language:CSS 7.1%Language:Makefile 1.0%Language:Shell 0.1%