A simple Django web application demonstrating basic routing with JSON and HTML responses.
- Clone the repository:
git clone https://github.com/TravisLLester/django-hello-world.git
- Create virtual environment:
python -m venv .venv
source .venv/Scripts/activate
.venv\Scripts\Activate.ps1
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python manage.py runserver
Available Routes API Endpoint: http://127.0.0.1:8000/api/
Hello Page: http://127.0.0.1:8000/hello/
Personal Greeting: http://127.0.0.1:8000/hello/1/
About Page: http://127.0.0.1:8000/travis-lester/
Python 3.8+
Django 4.0+