I'm working on Django application assisting deployment processes of Python applications using Fabric.
I know moderately both Fabric and Django, but I'm not sure how can/should I use them in order to be able to run deployment and other tasks on servers than configuration is stored in the database.
The thing is, I have all needed server credentials stored in the database and want to be able to use them instead of declaring particular hosts in fabfile.py (or maybe somehow parameterizing them, to call ie. sth like "fab server1_from_database deploy"). I need to be able to add/edit/delete hosts from the Django application itself, without editing fabfile.py.
Is it somehow possible to achieve this?
Thank you for any help, I'm totally stuck here...