Skip to content

toptechskills/realworld

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Implementation of real-world application: https://github.com/gothinkster/realworld/ using Django and HTMX.

An in-depth discussion of this implementation can be found here.

Tech Stack:

To install and run locally:

# Create the python virtualenv
python -m venv venv

# Activate the virtualenv for the current shell
. venv/bin/activate

# Install the required python packages with pip
pip install -r requirements.txt

# Run the DB migrations
./manage.py migrate

# Start the application listening at localhost:8000
./manage.py runserver localhost:8000

# Curl the http endpoint (or open it in your browser)
curl http://localhost:8000

Note: this is just a reference implementation and is not intended for production use.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 51.2%
  • HTML 48.8%