Skip to content

Commit

Permalink
added Procfile
Browse files Browse the repository at this point in the history
  • Loading branch information
justinvoss committed Aug 12, 2011
1 parent cf97242 commit 3de820a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 9 deletions.
20 changes: 11 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,21 @@

A simple webapp for logging and sharing HTTP requests.

## Installation
* Clone the repository.
* cd SpyGlass/spyglass_demo
* sudo pip install -r pip-requirements.txt
* python ./manage.py syncdb --all
## Installation

git clone git://github.com/bleedingwolf/Spyglass.git
cd Spyglass/spyglass_demo
pip install -r pip-requirements.txt
python manage.py syncdb --all

## Usage

Run both of the following from two separate consoles:

* python ./manage.py runserver
* python ./manage.py celeryd
* `python manage.py runserver`
* `python manage.py celeryd`

If you have `foreman` installed, you can also run both at once with `foreman start`.

## Authors

Expand All @@ -23,5 +26,4 @@ This implementation is licensed under a permissive BSD-style license, with the e

JQuery 1.4.2: MIT or GPL 2, at your option

less.js 1.0.30: Apache 2.0

less.js 1.0.30: Apache 2.0
2 changes: 2 additions & 0 deletions spyglass_demo/Procfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
web: python manage.py runserver
worker: python manage.py celeryd

0 comments on commit 3de820a

Please sign in to comment.