Through out this guide you see xxxxxxx. This is to be replaced with your username from your welcome email.
/home/xxxxxxxx/web/public/home/xxxxxxxx/facebook/facebook-platform/client into /web/public/home/xxxxxxxx/web
mod_python is not enabled in apache by default to save on memory for the people who do not require python. If you require MySQL then please follow these instructions for building the current version of MySQLdb.
/home/xxxxxxxx/myapps/ (for example)#LoadModule python_module lib/httpd/mod_python.so
and change to
LoadModule python_module lib/httpd/mod_python.so
<Location "/mysite/"> SetHandler python-program PythonHandler django.core.handlers.modpython SetEnv DJANGO_SETTINGS_MODULE mysite.settings PythonDebug On PythonPath "['/home/xxxxxxx/myapps'] + sys.path" </Location>
If you need to run any commands on the server you are able to ssh as xxxxxxxx@xxxxxxxx.fb.joyent.us. You are also able to do it from your browser. Below is shown how to run a rails migration. The basic format for any command is
cd /path/to/current/directory && COMMAND_TO_EXECUTE param1, param2