Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/chaseconey/kaleido
- Owner: chaseconey
- Created: 2013-03-20T15:52:47.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-04-20T20:21:09.000Z (almost 12 years ago)
- Last Synced: 2024-11-13T20:42:12.972Z (2 months ago)
- Language: Python
- Homepage:
- Size: 226 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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-pythonhttp://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 kaleido3. 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