Hi there,
I have a small python service with a django frontend. The service pulls runtime information from the django database. Right now they both live on my laptop, and the service can directly reference django's connection to the database, to import models and use the ORM.
I'm in the process of putting the frontend live on PyAnywhere. I want to leave a copy of my django app on my laptop, and have it connected to the PyAnywhere database, so I can still reference the database through my local django, and have access to all the ORM tools.
Is it possible to point a local django to a PyAnywhere database? I've been trying with MySQL but perhaps could use SQLite.
Thanks! Peter