tej.tan
tej.tan

Reputation: 4177

How to install the django site (tar.gz) downloaded from internet

I have downloaded this project http://code.google.com/p/django-budget/

How can i install it. Do i need to execute some commands or just extract it to some folder.

DO i need to use syncdb.

I am newbie so don't know much

Upvotes: 0

Views: 933

Answers (1)

foxy
foxy

Reputation: 7672

PS. It's been moved to https://github.com/toastdriven/django-budget for a while now.

There is information on the frontpage of the site:

Installation

  • Either copy/symlink the budget app into your project or place it somewhere on your PYTHONPATH.

  • Add the budget.categories, budget.transactions and budget apps to your INSTALLED_APPS.

  • Run ./manage.py syncdb.

  • Add (r'^budget/', include('budgetproject.budget.urls')), to your urls.py.

You need Python and Djano installed.

Upvotes: 1

Related Questions