I'm having trouble starting debug mode in Aptana using the Pyramid Framework.
The platform I'm using is Debian/Linux, running Python 3.
These are the commands I use to create and run a Pyramid project. (source)
1. pcreate -s starter MyProject //create project
2. python3.2 setup.py develop //setup develop mode
3. pserve development.ini //run application
When I run the 3rd step the terminal shows this and I able to open the browser and view the site.
Starting server in PID 15507.
serving on "http://0.0.0.0:6543"
How do I run the debugger and setup breakpoints so I can step through the code.