# Yacos Backend Yet another Check-Out System # Setup Dev environment ## Nix ```console nix-shell ``` ## Legacy (untested) ```console virtualenv . . bin/activate pip install django==2.2 djangorestframework django-cors-headers pillow ``` # Run Dev Build ``` python manage.py makemigrations python manage.py migrate python manage.py createsuperuser python manage.py runserver & firefox localhost:8000 ```