Skip to content

oleoneto/arvestust

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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