Как я могу установить сайт django на localhost с помощью bash export

Я новичок в программировании django, я скачал сайт discord с git hub https://github.com/python-discord/site.

Я пытаюсь установить этот сайт в течение последних 5-6 часов. Я искал ответ везде, но, к сожалению, не могу найти четкого ответа.

Я напишу свои шаги на данный момент: Скачал исходный код

  1. Started venv, started new project and then copied all files to the folder.
  2. Added conf folder and inside secret.json

теперь я застрял на 4:

  1. Add export DJANGOPROJECT_DATA_DIR=~/.djangoproject (without the backticks) to your ~/.bashrc (or ~/.zshrc if you're using zsh, ~/.bash_profile if you're on macOS and using bash) file and then run source ~/.bashrc (or source ~/.zshrc, or source ~/.bash_profile) to load the changes. I added the line: export DJANGOPROJECT_DATA_DIR=~/Desktop/website/site-main (this is my website folder path) at the end of the .bashrc file.

Но я не получаю ничего рядом: 'source' не распознан как внутренняя или внешняя команда, оперативная программа или пакетный файл.

Я изменил команду на set for windows, но ничего не произошло.

введите описание изображения здесь

    raise ImproperlyConfigured(error_msg)
django.core.exceptions.ImproperlyConfigured: Set the SECRET_KEY environment variable
Вернуться на верх