arvestust is a django app file management and record-keeping.
arvestust depends on django itself, django-crispy-forms
, and python-magic
.
The app is split into three main models:
- 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/...
arvestust is BSD-Licensed.
Built with django-clite.
Developed and maintained by Leo Neto