A page for organize multiple folders with specific fields as Name, Serie, Code, etc.
First create a virtualenv, name it '.venv' or as you like.
python3 -m venv .venv
Activate the virtual enviroment.
source .venv/bin/activate
Then install requirements.
pip install -r requirements.txt
Create a .env file and/or a local_settings.py file, continue with the migrations.
python manage.py makemigrations
python manage.py migrate
Create a superuser.
python manage.py createsuperuser
And run server
python manage.py runserver