Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/chaseconey/kaleido

hacker news django clone
https://github.com/chaseconey/kaleido

Last synced: 11 days ago
JSON representation

hacker news django clone

Awesome Lists containing this project

README

        

# kaleido - hacker news django clone

## Quick Install

### Setup

1. Create virtual environment and install Django (v1.5 is recommneded)

% mkvirtualenv kaleido
% pip install django
% pip install MySQL-python

http://stackoverflow.com/questions/4359131/brew-install-mysql-on-mac-os for more information

2. Get the [source code][source] for the course

a. Clone the repo

% git clone [email protected]:Chasiepoo/kaleido.git
% cd kaleido

3. Setup permissions

% chmod +x manage.py

4. Sync DB

% ./manage.py syncdb # setup an admin user
% python loader.py # load in some stories (modify with your admin name)

5. Run Server

% ./manage.py runserver

## Other Functions

If you want to have the static files collected

% ./manage.py collectstatic

[source]: https://github.com/chasiepoo/kaleido/archive/master.zip