Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 806 Bytes

README.md

File metadata and controls

22 lines (16 loc) · 806 Bytes

Tapio

Environment Setup

  • Build docker image
    • docker-compose up -d --build
  • Connect to docker, create super user, and run migration
    • ./helper_connectDocker
    • python manage.py migrate
    • create super user : echo "from django.contrib.auth import get_user_model; User = get_user_model(); User.objects.create_superuser('admin', 'admin@tapio.io', 'tapio1234')" | python manage.py shell
  • The migrations give you an initial load of sample data that you can play with

Documentation

Test API

  • If you use Thunder VScode extension : there are some exemples of POST/PATCH for source, reduction strategy and report API in thunder-test folder.