Re: Django 2.0 MongoDB

2018-05-18 Thread Manuel Pita
I have tried a library called djongo, although I have never used it for a production environment. https://nesdis.github.io/djongo/get-started/ Greetings. 2018-05-18 5:59 GMT+02:00 Ryan Nowakowski : > Django is typically used with a SQL database. There's a fork of Django > called non-rel that wo

Re: Django 2.0 MongoDB

2018-05-18 Thread Manuel Pita
yo he probado una libreria llamada djongo, aunque nunca lo he usado para un entorno de produccion. https://nesdis.github.io/djongo/get-started/ Saludos. 2018-05-18 5:59 GMT+02:00 Ryan Nowakowski : > Django is typically used with a SQL database. There's a fork of Django > called non-rel that wor

Re: Django 2.0 MongoDB

2018-05-17 Thread Ryan Nowakowski
Django is typically used with a SQL database. There's a fork of Django called non-rel that works with mongo but it's not actively developed any longer. Instead you can access mongo from a Django view via the standard mongo python library but you won't be able to use Django's models or admin. Tho