Production deployments and Version Control for DJango projects

2020-02-14 Thread Ram
Hi, I'm currently having development server with Digital Ocean for our Django based web site. We are currently copying new code manually to project folder and running makemigrations and migrate. Since this manual process is not sustainable in future, I would like to implement right process and too

Re: Production deployments and Version Control for DJango projects

2020-02-14 Thread Aldian Fazrihady
Try ansible-playbook Regards, Aldian Fazrihady http://aldianfazrihady.com Pada tanggal Sab, 15 Feb 2020 10.34, Ram menulis: > Hi, > > I'm currently having development server with Digital Ocean for our Django > based web site. We are currently copying new code manually to project > folder and r

Re: Production deployments and Version Control for DJango projects

2020-02-14 Thread Sam Hefer
Bitbucket is great if you don’t like Git env. It has a great interface. Thanks, Sam > On 15/02/2020, at 4:34 PM, Ram wrote: > >  > Hi, > > I'm currently having development server with Digital Ocean for our Django > based web site. We are currently copying new code manually to project folder

Re: Production deployments and Version Control for DJango projects

2020-02-15 Thread Kasper Laudrup
Hi Sam, On 15/02/2020 05.58, Sam Hefer wrote: Bitbucket is great if you don’t like Git env. It has a great interface. Bitbucket is more or less a web frontend to git, so it can hardly be regarded as an alternative to git. But I agree that the git command line interface isn't exactly the mo

Re: Production deployments and Version Control for DJango projects

2020-02-15 Thread Kasper Laudrup
Hi Aldian, On 15/02/2020 05.57, Aldian Fazrihady wrote: Try ansible-playbook That's exactly what Ansible was designed for, so I agree that this would be the obvious route to go. No reason not to use git for source control and then Ansible to automate the deployment. Kind regards, Kaspe

Re: Production deployments and Version Control for DJango projects

2020-04-19 Thread Ram
Thank you, all. We started with GIT hub and planning to add ansible-playbook later in our development phase. Best regards ~Ram On Sat, Feb 15, 2020 at 2:55 AM Kasper Laudrup wrote: > Hi Aldian, > > On 15/02/2020 05.57, Aldian Fazrihady wrote: > > Try ansible-playbook > > > > That's exactly what

Re: Production deployments and Version Control for DJango projects

2020-04-19 Thread JEGATHEESWARAN SUNDARAVADIVEL
Hi , Try Jenkins also for Continuous Integration (CI) Regards Jegatheeswaran sundaravadivel On Sun, 19 Apr 2020 at 22:23, Ram wrote: > Thank you, all. We started with GIT hub and planning to add > ansible-playbook later in our development phase. > > Best regards > ~Ram > > On Sat, Feb 15, 2020

Re: Production deployments and Version Control for DJango projects

2020-08-29 Thread Ram
Hi, After some review we decided to go with Jenkins for continuous integration and deployment. Our development server was deployed on Ubuntu 18.x with Postgres DB and Python 3 virtual environment, DJango and GIT. Now we are planning to setup Jenkins server on the same dev. server so that we coul