An end-to-end dataset collection system designed for scalability. Supports multi-role workflows, structured label taxonomies, validation cycles, goal tracking, and archive exports. Ideal for organizations building private, high-integrity datasets with distributed teams of data collectors.
🛠 Currently in active development. Ideal for internal use, pilots, and research-stage projects.
This platform enables you to:
- Create projects with custom label systems
- Upload images/videos and assign them to labeling schemas
- validate uploaded files
- Set collection goals
- Track progress with stats
- Export data
See docs/ for manuals and walkthroughs:
- Main Backend: Django + PostgreSQL
- File Backend: FastAPI + MongoDB (blob storage)
- Task Queue: Celery + Redis
- Frontend: React
- Deployment: Docker, Compose, Makefile-based workflow
backend-app/— main Django appfrontend-app/— React appstorage-app/— FastAPI blob servicescripts/— app handy toolstests/— global testsnginx/,redis/— infrastructure configsMakefile— common commandsdocker-compose*.yml— dev/test/prod setup
- Docker + Docker Compose installed
.envfile created from.env.sample
cp .env.sample .envmake build # build all services
make start # start in prod mode
make dev # start in dev modeFull command list available in the Makefile section below.
Run with:
docker exec iss-test-back ./manage.py test # Main Backend
docker exec iss-test-storage python3 src/test.py # Storage Backend
docker exec iss-test-front npm test # Frontend
docker exec iss-tests flake8 # Python linter
docker exec iss-test-front npm run lint # JavaScript linter
docker exec iss-test-front npm run compile # JavaScript ts compiler checkerGeneral
make build # build all services
make start # start in prod mode
make stop # stop prod mode
make start-new # rebuild and start services in prod mode
make restart # stop and start in prod modeDev Mode
make dev # start in dev mode
make dev-stop # stop dev mode
make dev-new # rebuild and start services in dev mode
make dev-restart # stop and start in dev modeTests
make test # rebuild and start services in test mode
make test-start # start in test mode
make test-build # build test mode
make test-stop # stop test mode
make test-restart # stop and start services in test modeUtils
make dump-schema # dump database schema
make dump-data # dump database data
make dump-all # dump database both schema and data
make init-admin # create new superuser