Re: Create project in windows, but run it in Ubuntu

2019-03-26 Thread Mario R. Osorio
I'm sure you won't regret it. Dtb/Gby === Mario R. Osorio *Just Choose Python!* *SQL programmers don't die, they just ROLLBACK the TRANSACTION.* On Tue, Mar 26, 2019 at 3:04 PM Chafid Ahmad wrote: > Thanks everyone for the

Re: Create project in windows, but run it in Ubuntu

2019-03-26 Thread Chafid Ahmad
Thanks everyone for the suggestions. I ended up using the 3rd solution: making my laptop dual boot, Ubuntu and windows Cheers On Tue, Mar 26, 2019, 20:34 Mario R. Osorio wrote: > Of course you can however, IMHO; it is better to use whatever is closest > to the real McCoy. Two options I can

Re: Create project in windows, but run it in Ubuntu

2019-03-26 Thread Eduardo Cervantes
I developed my django site on windows 10 and published to a ubuntu box without issues. Using github or other repository is straightforward and a good idea. The only thing you need to change is your settings/config since one is dev and the other will be production but you would have that issue

Re: Create project in windows, but run it in Ubuntu

2019-03-26 Thread Mario R. Osorio
Of course you can however, IMHO; it is better to use whatever is closest to the real McCoy. Two options I can think of are: 1) Use Docker images. It is not very hard to work with Docker images however, it does add a bit of difficulty to your workload. 2) Use a Linux image in VirtualBox. It

Re: Create project in windows, but run it in Ubuntu

2019-03-22 Thread chandan kumar
Hi, I tried it doing so , but didn't work for me. I had to give the same project to one of my friend who was using Django installed in Ubuntu. But it dint work there, so i had to install django again in his windows 10. Thanks *Chandan Chaudhary* IIIT Guwahati Btech(3rd Year) On Fri, Mar 22,

Re: Create project in windows, but run it in Ubuntu

2019-03-22 Thread Bill Freeman
Using git does not require github. You can use any accessible machine to serve a git repository, to which you can push, and from which you can pull, using, for example, git+ssh (you could also use an ssh tunnel, but git supports ssh transport directly). Do set up ssh to require keys and not

Re: Create project in windows, but run it in Ubuntu

2019-03-22 Thread Aldian Fazrihady
Hi, That's is possible. On Fri, 22 Mar 2019, 19:28 Chafid Ahmad, wrote: > Hi, I have a client who wanted to run a Django project that can run in > Ubuntu. As I don't have a UX machine to developed it, is it possible to > developed the project in Windows, but later export it to Ubuntu? My

Create project in windows, but run it in Ubuntu

2019-03-22 Thread Chafid Ahmad
Hi, I have a client who wanted to run a Django project that can run in Ubuntu. As I don't have a UX machine to developed it, is it possible to developed the project in Windows, but later export it to Ubuntu? My initial plan is: - Developed the project with pycharm in windows - Upload the project