Re: tutorial on mongodb and django

2017-12-11 Thread Genzo Vandervelden
I can't say I have experience in using Django and MongoDB but you can take a look at these: - https://django-mongodb-engine.readthedocs.io/en/latest/topics/setup.html - https://django-mongodb-engine.readthedocs.io/en/latest/tutorial.html - https://github.com/django-nonrel/mongodb-eng

Re: tutorial on mongodb and django

2017-12-11 Thread Ruben Alves
I've seen someone posting here some time ago the Djongo (Django + Mongo): https://github.com/nesdis/djongo Em domingo, 10 de dezembro de 2017 19:34:18 UTC-2, Krishna Neupane escreveu: > > Hey I am trying to learn Django and wanted to implement it with mongoDB. > Are there any pointers where I co

Re: tutorial on mongodb and django

2017-12-11 Thread Jason
I would avoid mongo, because Django's ORM is explicitly designed for relations and doesn't translate well to NoSQL DBs. As an alternative, look into mysql or postgres, with a big recommendation of the latter. On Sunday, December 10, 2017 at 4:34:18 PM UTC-5, Krishna Neupane wrote: > > Hey I am