Re: How do I move a project from one computer to another?

2018-02-12 Thread Mike Dewhirst
On 13/02/2018 11:09 AM, Tom Tanner wrote: I have a Django project that I want to work on with another computer. Do I need to backup my current project's Postgres database and restore it on the other computer's Postgres database to get my project up and running there? Or is there a Django way

Re: How do I move a project from one computer to another?

2018-02-12 Thread Ramez Kabbani
You should be using some kind of git system. Push your code to the repo and pull it on the new machine. There should be no really concern switching machines. If your current DB has data that you need, export them and then import. You need to know how to do this for production code, so you

Re: How do I move a project from one computer to another?

2018-02-12 Thread sum abiut
It depends on where you want to house your app.if you need to house your app on the new machine. Just pip install from your requirements.txt file, then copy your django project to your new machine. On 13/02/2018 11:10 AM, "Tom Tanner" wrote: > I have a Django

Re: How do I move a project from one computer to another?

2018-02-12 Thread Etienne Robillard
Hi, you can use rsync for your project's source code. Etienne Le 2018-02-12 à 19:09, Tom Tanner a écrit : I have a Django project that I want to work on with another computer. Do I need to backup my current project's Postgres database and restore it on the other computer's Postgres database