Opened 12 years ago

Closed 12 years ago

#19741 closed Bug (fixed)

Procedure in README.txt for setting up djangoproject locally doesn't work

Reported by: Aymeric Augustin Owned by: nobody
Component: *.djangoproject.com Version: dev
Severity: Normal Keywords:
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

[originally reported by eswenson1 at https://github.com/django/djangoproject.com/issues/28]

eswenson1

The current procedures described in README.txt for setting up the djangoproject locally don't work. This appears to be because they assume that you already have a trac database setup properly with the correct schema. When the ./manage.py migrate step is executed, it fails due to missing relations from the trac model. In particular, the migration fails with the following error:

Running migrations for trac:

> Migrating forwards to 0001_initial.
> trac:0001_initial ERROR: relation "attachment" does not exist STATEMENT: CREATE VIEW "attachment_django_view" AS SELECT "type" || '.' || "id" || '.' || "filename" AS "django_id", * FROM attachment;

Perhaps you could provide a truncated database dump from the live trac instance so that this can be used to create a dummy trac database.

I decided to try to simply install Trac (0.12) and specify a database connection string that pointed to the code.djangoproject database. Once I did that, I was able to run the "./manage.py migrate" with no errors. The server started up fine after that.

dlo

Pull request: https://github.com/django/djangoproject.com/pull/46

Change History (1)

comment:1 by Aymeric Augustin <aymeric.augustin@…>, 12 years ago

Resolution: fixed
Status: newclosed

In ccde1930c05f90bbc28278a379d6e1ad60e1f29c/djangoproject.com:

Updated installation instructions in README.

Fixed #19741.

Note: See TracTickets for help on using tickets.
Back to Top