Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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!