Sloth is an extension of Django framework aimed at the fast development of web applications. It used metadate provided in the model classes to generate the backend (REST API) and the frontend (Web interface).
The main functionalities offered by the framework are:
- Automatic generation of admin interface (listing, adding, editing, deleting and visualization of objects)
- Object-level access control based on roles and scopes
- Creation of applicaton dashboard
- Asynchronous tasks
- Responsive interface
pip install git+https://github.com/brenokcc/sloth.git#egg=sloth
pip install django-sloth
django-admin startproject
cd
python -m sloth configure
python manage.py sync
python manage.py createsuperuser
python manage.py runserver
bin/build.sh
docker run -it --rm --name app -p 8000:8000 -v $(pwd):/app -w /app sloth sh
