Skip to main content

A Django app for file management and record-keeping

Project description

Django Arvestust

arvestust is a django app file management and record-keeping.

PyPI - License PyPI - Version PyPI - Python Version Github - Issues PyPI - Downloads

Dependencies

arvestust depends on django itself, django-crispy-forms, and python-magic.

Models

The app is split into three main models:

Installation

  1. Add arvestust to your INSTALLED_APPS setting like this::
    INSTALLED_APPS = [
        # other apps...
        'arvestust',
    ]

Alternatively, you can also add this app like so::

    INSTALLED_APPS = [
        # other apps...
        'arvestust.apps.ArvestustConfig',
    ]
  1. Include the polls URLconf in your project urls.py like this::
    path('records/', include('arvestust.urls', namespace='arvestust')),

2.1. Optionally, you can also add the api endpoints in your project urls.py like so::

    path('api/', include('arvestust.api', namespace='arvestust_api')),
  1. Run python manage.py migrate to create the app models.

  2. Start the development server and visit http://127.0.0.1:8000/admin/ to start adding objects (you'll need the Admin app enabled).

  3. Visit http://127.0.0.1:8000/records/ to use the app.

5.1. If you've included the api urls as well, you can visit the endpoints by visiting:

    http://127.0.0.1:8000/api/...

License

arvestust is BSD-Licensed.


Built with django-clite.

Developed and maintained by Leo Neto

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

django-arvestust-0.7.1.tar.gz (26.0 kB view hashes)

Uploaded Source

Built Distribution

django_arvestust-0.7.1-py3-none-any.whl (57.8 kB view hashes)

Uploaded Python 3

Supported by

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