I would like to manually populate the database in my Django app. In Rails, I just have to enter the info in the seed file and that's it. The db.sqlite3 file has many numbers in it which I don't get.
I am a beginner so please forgive my ignorance. In which directory should I put my DB and which format should the file be in? Then, how can I manually (no Faker I want to write the instances myself) create the DB? Finally, how can I retrieve the info to display it in my view?
Thanks!