Skip to content Skip to sidebar Skip to footer

How Can I Debug Python Web Site On Amazon Ec2?

I am new to web development. This is probably a dumb question but I could not quite find exact answer or tutorial that could help me. The company I am working at has its site(which

Solution 1:

You just need to find out where your code is located on the server. SSH to one of the instances and then you can use the python interactive shell to run your django code for debugging, use the manage.py commands for database debugging, tests etc.

Once you have connected to the instance, it's just an OS.

Post a Comment for "How Can I Debug Python Web Site On Amazon Ec2?"