[web2py] How to update web app on server without change the data already in database

2013-02-23 Thread Cliff Kachinske
On Unix type systems you have rsync. -- --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to web2py+unsubscr...@googlegroups.com. For more options, visit https://g

Re: [web2py] How to update web app on server without change the data already in database

2013-02-22 Thread animnook
Thanks. -- --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to web2py+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_o

Re: [web2py] How to update web app on server without change the data already in database

2013-01-21 Thread selecta
as Johann already mentioned overwriting all your .py files will not change you database so you should be fine doing that if you do not wan to do this manually you can e.g. use a version control system and exclude the content of the databases directory then on the client side all you have to do

Re: [web2py] How to update web app on server without change the data already in database

2013-01-21 Thread Johann Spies
On 21 January 2013 04:46, animnook wrote: > I have a web app on server and I use web2py web interface to update the > project file. > But the users wants to add data in db while I am still working on other > part of the app. > as right now I just copy and paste everything in controller file local

[web2py] How to update web app on server without change the data already in database

2013-01-20 Thread animnook
I have a web app on server and I use web2py web interface to update the project file. But the users wants to add data in db while I am still working on other part of the app. as right now I just copy and paste everything in controller file local to server. and upload whatever new pages I create.