Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,6 @@ cd backend
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
# create a .env file in the backend/ directory with the required settings, for example:
# DJANGO_SECRET_KEY=your-dev-secret-key
# DJANGO_DEBUG=True
# DJANGO_ALLOWED_HOSTS=localhost,127.0.0.1
python manage.py migrate
python manage.py runserver
Comment on lines 26 to 30
Copy link

Copilot AI Feb 25, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The README no longer mentions how to configure runtime environment variables for the backend. Since backend/cheat_sheet/settings.py loads backend/.env and supports DJANGO_DEBUG, DJANGO_SECRET_KEY, and DJANGO_ALLOWED_HOSTS, it would be helpful to keep (or replace) a brief example of these variables for local setup.

Copilot uses AI. Check for mistakes.
```
Expand Down
Loading