https://github.com/scaleoutsystems/studio-api
Django app for handling REST-API in studio
https://github.com/scaleoutsystems/studio-api
Last synced: 8 months ago
JSON representation
Django app for handling REST-API in studio
- Host: GitHub
- URL: https://github.com/scaleoutsystems/studio-api
- Owner: scaleoutsystems
- License: apache-2.0
- Created: 2022-11-07T17:02:49.000Z (over 3 years ago)
- Default Branch: develop
- Last Pushed: 2023-08-07T03:00:13.000Z (almost 3 years ago)
- Last Synced: 2025-02-28T04:09:12.586Z (over 1 year ago)
- Language: Python
- Size: 118 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# studio-api
Restful-API Django module for [Studio/STACKn](https://github.com/scaleoutsystems/stackn). To include source package in a Django project:
```
$ python3 -m venv .venv
$ source .venv/bin/activate
$ pip install .
```
And add to installed apps in settings.py:
```
INSTALLED_APPS=[
"rest_framework.authtoken",
"rest_framework",
"api"
]
REST_FRAMEWORK = {
"DEFAULT_AUTHENTICATION_CLASSES": [
"rest_framework.authentication.TokenAuthentication"
],
}
```
For a complete project follow the link above and navigate to settings.py