A Hacker News lookalike written in Python/Django, powering https://news.python.sc
python -m venv venv/
source venv/bin/activate
pip install -r requirements.txt
python manage.py migrate
- Set
DEBUG=True
if necessary - Add
127.0.0.1
toALLOWED_HOSTS
python manage.py runserver
Now you can access the website at 127.0.0.1:8000
.