Thank you for the great explanation - hitting the Django docs now!

On Friday, May 1, 2015 at 12:16:28 AM UTC-4, Eduardo Rivas wrote:
>
> Hi! The createdb command is only for initially populating the database and 
> doing other bootstrapping required on first run. The other commands you see 
> there are required for subsequent deployments, they do the following:
>
> - collectstatic: Gets all static resources from every installed app into a 
> single directory to be served by your static server.
> - syncdb: Creates new DB tables in case you have installed new apps since 
> the last deployment.
> - migrate: Modifies existing DB tables in case you have modified already 
> installed models.
> - supervisord: general purpose task runner/watcher. Monitors and restarts 
> your site if it goes down.
>
> The three commands are standard Django stuff (though migrate requires the 
> south app with Django versions prior to 1.7). I recommend you look for them 
> in the Django docs to better understand what they do.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Mezzanine Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to mezzanine-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to