a basic django rest-framework api done in a live coding enterview
first create a virtual enviroment and activate it
python3 -m venv envsource env/bin/activateactualizar el pip
pip install --upgrade pipinstall the requirements
pip install -r requirements.txtnavigate to the project folder
cd coremigrate the database
python manage.py migrateLoad seed jokes data
python manage.py loaddata seed/*Run the Server to check it ou
python manage.py runserverswagger Docs can be found in http://localhost:8000/swagger/