django-arvestust 0.7.1

Creator: codyrutscher

Last updated:

Add to Cart

Description:

djangoarvestust 0.7.1

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





Dependencies
arvestust depends on django itself, django-crispy-forms, and python-magic.
Models
The app is split into three main models:

comment
file
follow
like
save
tag

Installation

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',
]


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')),



Run python manage.py migrate to create the app models.


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


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

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.