Transferring Django project from Mac to Ubuntu EC2 Instance

Go To StackoverFlow.com

1

I am new webservers...and...

I am working on a django project that is ready to go up and I was wondering how to transfer files from my local machine to the EC2 server? I am currently running an Ubuntu instance if that makes any difference.

Any help would be greatly appreciated! Thanks!

2012-04-04 05:49
by Mars J


1

You can simply upload your files by using scp (ssh cp), like this

scp your_file ubuntu@[your_server_address]:~/target_path

And what's more, you can try rsync.

2012-04-04 05:59
by Kjuly


1

You might try a tool like rsync or cyberduck.

2012-04-04 05:57
by A B
Ads