Skip to content
Snippets Groups Projects
Commit f5e7b382 authored by nesdis's avatar nesdis Committed by GitHub
Browse files

Update README.md

parent 3de29862
Branches
Tags 1.0
No related merge requests found
# djongo # djongo
Driver for allowing Django to use NoSQL databases Driver for allowing Django to use NoSQL databases
Now use NoSQL databases like Mongodb as a backend for django!!! Use Mongodb as a backend database for your django project, without changing a single django model!!!
<h2>Usage:</h2>
1. Clone djongo directory into Lib\site-packages\django\db\backends 1. Clone djongo directory into Lib\site-packages\django\db\backends
2. Add: 2. Add:
...@@ -16,3 +18,16 @@ Now use NoSQL databases like Mongodb as a backend for django!!! ...@@ -16,3 +18,16 @@ Now use NoSQL databases like Mongodb as a backend for django!!!
Into settings.py file of your project. Into settings.py file of your project.
3. YOUR ARE SET! HAVE FUN! 3. YOUR ARE SET! HAVE FUN!
<h2>How it works:</h2>
djongo is a SQL to mongodb query complier. It translates every SQL query into a mongoDB query document and quries the backend instance.
As djongo translates a SQL query string into a MongoDB command, all Django features, models etc work as is.
Django contrib modules:
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.sessions',
and others... fully supported.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment