Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Deploying Django App stack that's been developed using South?

So, I've my application stack and I'm ready to deploy it to my webserver.

I'm deploying to a fresh, clean and blank database, so what command to I run? Do I run ./manage.py syncdb or do I use a South command to setup the database?

like image 566
ChronosLLC Avatar asked Jul 13 '11 15:07

ChronosLLC


1 Answers

./manage.py syncdb
./manage.py migrate
like image 159
Craig Blaszczyk Avatar answered Sep 26 '22 08:09

Craig Blaszczyk