Trying to keep it simple, but with almost no experience in version control, here is what I came up with for version and deployment workflow for a facebook application that is already live:
Development:
branch from trunk
checkout and setup dev enviroment (automatically create database, netbeans project, facebook app, config file);
Staging (same as development branch):
run tests (manually);
if ok - svn commit and merge development/staging branch with trunk
Post-commit hook to deploy project to live server and update production database if needed.
Synchronize different development branches - if one development branch graduated to production, merge it with the other branch(es) still in development.
Are there any blaring mistakes with this workflow? Or any suggestions on how to improve it.
PS: I'm the only developer for now.