I've been following this with a fresh install of symfony2 and everything goes fine until I hit the step where it says
php app/console doctrine:mongodb:generate:documents AcmeStoreBundle
which then gets me the error
Bundle AcmeStoreBundle does not contain any mapped documents. Did you maybe forget to define a mapping configuration?
I've followed the guide exactly other than in config.yml, where I had a custom URI connection string since I turned on auth. I don't believe this is the problem, but I'll post it anyways.
doctrine_mongodb:
connections:
default:
server: mongodb://root:password@localhost:27017
options: {}
default_database: admin
document_managers:
default:
auto_mapping: true