Re: Transitioning existing login portal to Django

2015-12-02 Thread 'Tom Evans' via Django users
On Tue, Dec 1, 2015 at 10:15 PM, Evan Palmer wrote: > Hello, > > Does anyone have experience with transitioning an existing database > including user login data to Django? > > I am about to begin work on a startup's hand-written web portal that > consists of about 2000 lines

Re: Transitioning existing login portal to Django

2015-12-02 Thread 'Alan Hicks' via Django users
Hi, I treat them as a straightforward migration (not Django's btw). Create the models and functionality to replicate existing then write sql if necessary to convert to the new schema. Depending on the complexity, the migration should not try to change much until it's in a (Django) form you

Transitioning existing login portal to Django

2015-12-01 Thread Evan Palmer
Hello, Does anyone have experience with transitioning an existing database *including user login data* to Django? I am about to begin work on a startup's hand-written web portal that consists of about 2000 lines of custom Python code (hashing passwords, managing user accounts, DB connections,