cluke009 / djukebox

LastFM client built with django.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Djukebox Django Project

Djukebox

Prerequisites

  • python >= 2.5
  • pip
  • virtualenv/wrapper (optional)

Unfortunately you need to be a LastFM subscriber to use this now :(

Installation

Creating the environment

Create a virtual python environment for the project. If you're not using virtualenv or virtualenvwrapper you may skip this step.

For virtualenvwrapper

mkvirtualenv --no-site-packages djukebox-env

For virtualenv

virtualenv --no-site-packages djukebox-env
cd djukebox-env
source bin/activate

Clone the code

Obtain the url to your git repository.

git clone git://github.com/cluke009/djukebox.git djukebox

Install requirements

cd djukebox
pip install -r requirements.txt

Configure project

cp djukebox/__local_settings.py djukebox/local_settings.py
vi djukebox/local_settings.py

Sync database

python manage.py syncdb

Collect static files

python manage.py collectstatic

Running

python manage.py runserver

Open browser to http://127.0.0.1:8000

About

LastFM client built with django.


Languages

Language:HTML 53.5%Language:JavaScript 37.4%Language:CSS 5.7%Language:Python 3.4%