Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 22 hours 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 (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-03-23T23:52:11.000Z (over 7 years ago)
- Last Synced: 2024-05-15T10:08:13.022Z (6 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!