Does anyone know where Elastic Beanstalk stores my Django models?

I am creating an app in Django, and I am hosting it on Elastic Beanstalk.

I want to know where it stores my models, because I don't know whether Django isn't saving models when I save them from a ModelForm, or if Elastic Beanstalk stores the models somewhere else.

This is kind of like an extension to my other problem: 'form.save(commit=True)' not saving to database

Back to Top