I am new to Django and I just want to know if it is possible to give Django a json file instead of creating a DB or models.
Basically, I have json with info that should appear in front end and it can be updated frequently. Is it possible to check in somewhere that json - as a DB for django. and in views.py to parse that json and create elements?
Will that work? Or I should create models for each element from json? And update/migrate each time models/db?
I hope I have managed to ask a right question.
you can try MongoDB, which support bson (very similar like json). The guide for MongoDB can be found at : https://django-mongodb-engine.readthedocs.io/en/latest/