Skip to main content

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

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

Gestus-0.2.1.tar.gz (10.5 kB view details)

Uploaded Source

File details

Details for the file Gestus-0.2.1.tar.gz.

File metadata

  • Download URL: Gestus-0.2.1.tar.gz
  • Upload date:
  • Size: 10.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for Gestus-0.2.1.tar.gz
Algorithm Hash digest
SHA256 0361adc01e79a2edae827d2625f533a375f581c542564beb2e173f691e5489fc
MD5 1c38170f9f4e441f09bdff11a1fa551b
BLAKE2b-256 775e9a5fb03f049ac83404966aaf1a9ba7b7b2897cbed7df4181c74e56cdddf0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page