Django application to manage some datas about Emencia client websites
Project description
Gestus is a Django app to collect and store datas about our Website projects at Emencia.
Although there is the Django admin to manage the Gestus objects, there is also a REST part which is used to create and update Website datas with a client.
Introduction
Gestus will store some datas about your project :
Its name and a description;
Its kind of environnement (integration or production);
Its server hostname;
The URL where the website project is published;
A list of installed packages with their version;
Require
djangorestframework >= 2.3
Install
Add PO Projects to your installed apps in settings :
INSTALLED_APPS = ( ... 'gestus' 'rest_framework' ... )
Then add the djangorestframework settings :
REST_FRAMEWORK = { 'PAGINATE_BY': 10, # Use hyperlinked styles by default. # Only used if the `serializer_class` attribute is not set on a view. 'DEFAULT_MODEL_SERIALIZER_CLASS': ( 'rest_framework.serializers.HyperlinkedModelSerializer', ), # Use Django's standard `django.contrib.auth` permissions, # or allow read-only access for unauthenticated users. 'DEFAULT_PERMISSION_CLASSES': ( 'rest_framework.permissions.IsAdminUser', #'rest_framework.permissions.DjangoModelPermissionsOrAnonReadOnly', ), }
Finally mount its urls in your main urls.py :
urlpatterns = patterns('', ... (r'^gestus/', include('gestus.urls', namespace='gestus')), (r'^api-auth/', include('rest_framework.urls', namespace='rest_framework')), ... )
External API access
With djangorestframework a rest API will be available on :
/gestus/rest/
It is browsable for authenticated users with admin rights (is_staff on True), also the client will need to access to the API with an user accounts with the admin rights.
Gestus-client is client to use the API from your project.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file Gestus-0.3.4.tar.gz
.
File metadata
- Download URL: Gestus-0.3.4.tar.gz
- Upload date:
- Size: 12.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 77dfca9e1ad34cd6e12cb21f4c7ffc07947c3b25306eabdd5cb6d5cb6283b474 |
|
MD5 | 4ab6cfa5916955a2627aabb51ab56b15 |
|
BLAKE2b-256 | 4b5d2ed78a6b2a9444eae5577fca2bf0c536013b69408280afae135760601185 |