Help With Viewing "db.sqlite3" File in a Django Project

I heard before that Glitch hides database files for security reasons. But I want to view the db.sqlite3 file in my Django project. How can I do that?

In your .gitignore file, you could un-gitignore the SQLite files so that they appear in the editor.

!*.sqlite3

Or

!db.sqlite3

Or, without doing any of this, you could view the database file through the terminal.

cat db.sqlite3
1 Like

That worked! Thank you so much!

You’re welcome! :grin::slight_smile:

1 Like