Experimenting with a Python Django backend framework for the radio project
First commit on the readme file
You can create a conda environment with
- conda env create -n django_radio --file environment.yml
- conda activate django_radio
https://docs.djangoproject.com/en/4.2/intro/overview/ Taking a cue from https://docs.djangoproject.com/en/4.2/intro/tutorial01/
The name chosen for the project is 'radiobackend'; Run the following command: django-admin startproject radiobackend
python3 manage.py runserver
The name chosen for the app is 'polls' python3 manage.py startapp polls