Question
Whats the best way to update my Django site on DigitalOcean?
I have a basic website that I have in Git, recently I created an Ubuntu droplet here on DO and then cloned my site from git in the new server and finished setting it up running on Nginx.
I have since then made changes to my site locally and pushed the changes to git, what is the best way to update the site on DO now? Should I clone it again from git or upload via ftp or is there another solution?
thank you
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×
I use git pull to update the site. But the problem is with the pycache. If i run migrations on my localserver to test the changes i made and than pull the changes in the server, it creates difficulty in running migrations.