Skip to content
This repository has been archived by the owner on Apr 15, 2018. It is now read-only.

Commit

Permalink
Better README, removed unused dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ekzhu committed Feb 21, 2013
1 parent d5266b4 commit f422252
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ data/
etc/

june/_static/sea-modules/
venv
33 changes: 33 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
June
=====

This is a forum project.

Before start:
-------------

Make sure you have python2.7, pip and virtualenv installed.

Development
-----------

To start development server:

$ git checkout https://github.com/ekzhu/june.git
$ cd june
$ virtualenv --distribute venv
$ source venv/bin/activate
(venv)$ pip install -r conf/reqs-dev.txt
(venv)$ python manager.py creatdb
(venv)$ python manager.py runserver

It should be running at localhost:5000.

Trouble shooting
----------------

If you encounter build failure when trying to install gevent and get error saying "event.h" not found. You need to install libevent before installing gevent again.

On Mac OS X with homebrew, you can simply do:

brew install libevent
4 changes: 0 additions & 4 deletions README.rst

This file was deleted.

5 changes: 2 additions & 3 deletions conf/reqs-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,10 @@
Flask
misaka
pygments
gevent
gevent==0.13.8

# database
Flask-SQLAlchemy
MySQL-python

# cache support
Flask-Cache
Expand Down Expand Up @@ -40,4 +39,4 @@ nose-cov
flake8

# documentation
sphinx
#sphinx

0 comments on commit f422252

Please sign in to comment.