Skip to main content
Question

Copy BASIC source code from production server to development server

  • June 30, 2026
  • 4 replies
  • 82 views

Doc Ruckel
Forum|alt.badge.img+1

Greetings, Rocketeers!

How can I accomplish moving BASIC source code from a production environment to a development environment?…

THX!

~Doc

4 replies

Harold Hambrick
Forum|alt.badge.img
  • Participating Frequently
  • June 30, 2026

Are the servers linux or windows servers?

 


Doug Averch
Forum|alt.badge.img+1
  • Participating Frequently
  • June 30, 2026

Using EclipseIDE we copy from our development machine to our production machine using and XML install script. Since we use UniObjects for Java, there is a dataset read and dataset write command that speeds up that copying by 30 to 50% as compared to COPY command. Our production machine is in California and our development machine is in Colorado so this technique works any where you have UniObjects access.


Charles Carpenter
Forum|alt.badge.img

If you have the UVNET package enabled on both servers then you can set up pointers and copy at the UV level.  If not, then you can use ‘Linux’ if you are using Linux/Unix.  If you are on Windows, you should be able to shares and copy from a command prompt.


Forum|alt.badge.img
  • Rocketeer
  • July 2, 2026

Depends what kind of workflow you want.

Guys already shared inside Uni ecosystem solution. You have ability to use external things, as it is no different than generic javascript or python dev workflow.

For source code if you have ssh access to production machine, you can transfer files and entire BP folders using rsync (you have scp as well, but rsync is more powerfull as it supports delta copy, compression - it transfers only changes, once first copy done). 

On linux (or heavy modified Windows) if you have ssh you can mount any remote folder using sshfs: https://github.com/libfuse/sshfs

In general if I had to have new user modern deployment, I would use git repo. And never edit from prod to dev direction.  You have options to sync from dev to production either manually or using devops pipeline.