https://github.com/douglasmoraisdev/mongodjangorestapi
A rest api to manage a users/group/meetings system, powered by Django and MongoDB, using OAuth2 for autentication and autorization.
https://github.com/douglasmoraisdev/mongodjangorestapi
django django-rest-framework mongodb mongoengine pymongo python python3
Last synced: 5 months ago
JSON representation
A rest api to manage a users/group/meetings system, powered by Django and MongoDB, using OAuth2 for autentication and autorization.
- Host: GitHub
- URL: https://github.com/douglasmoraisdev/mongodjangorestapi
- Owner: douglasmoraisdev
- Created: 2017-03-03T19:11:56.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-23T23:52:11.000Z (almost 9 years ago)
- Last Synced: 2025-04-12T08:53:13.241Z (11 months ago)
- Topics: django, django-rest-framework, mongodb, mongoengine, pymongo, python, python3
- Language: Python
- Size: 8.49 MB
- Stars: 12
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# mongodjangorestapi: A Mongo+Django REST API
A rest api to manage a users/group/meetings system, powered by Django and MongoDB, using OAuth2 for autentication and autorization.
# 1. Installing dependencies
```sh
$ pip install -r docs/requirements.txt
```
# 3. Configuration
```sh
$ vim apps/mysite/settings.py
```
add:
```
ALLOWED_HOSTS = ['your-domain-name-or-localhost.com:port']
```
# 2. Running a local server
```sh
$ cd apps/
$ python3 manage.py runserver
```
# 3. Done!