connecting my project to a remote sqlite database

Hello all, question is basically because I am using my desktop ubuntu pc to develope a small app but I need to test with data in a small sqlite3 database which is located in a remote server (off course I have root access).

¿Can I connect remotely withour user and password to an sqlite3 database which is not in the app localhost?

Thank in advance.

Only if you have file-level access to the database file (e.g. nfs). Sqlite is not an “engine” based database, it works by directly reading/writing the database file. So you would need to be able to open the file directly from Django.

You’ll be a whole lot better off if you just copy the file from the remote system to your test system.