Alternatives
Products that do what DJX – Convention over Configuration for Django (Rails-Inspired CLI) does
Hi HN, I'm a self-taught developer from Malawi, and I built DJX because I was tired of writing the same Django boilerplate over and over. Django is powerful, but starting a new feature means manually creating models, views, templates, URLs, and wiring everything together. Rails solved this 20 years ago with scaffolding. Django deserves the same. DJX brings convention over configuration to Django: pip install djx-cli djx new myblog && cd myblog djx scaffold Post title:string content:text published:boolean python manage.py migrate && python manage.py runserver # →…
- 1IM
I recently dug up an old project in an attempt to improve on it. It's a code sandbox for playing around with HTMX in the browser, that runs a mock server within the sandbox iframe. The server "framework" is loosely based on Django, so if you're familiar with Django, you'll immediately understand what's going on. I recommend clicking through the examples. Github repo: https://github.com/lassebomh/htmx-playground Probably my favorite part is the lack of HTMX specific code. It's designed to mimic the client and server, but really nothing else. In principle, this means that…
2024 · lassebomh.github.io
- 2RW
Hi everyone, I've been "funemployed" for a few months and with all that free time and idle hands I wrote a full web framework (think Rails, not Flask) for Rust. It's boring old MVC, has its own ORM, templates, background jobs, auth, websockets, migrations and more. If you're keen but don't feel like rewriting your app in a different language, Rwf has a WSGI server to run Django (or Flask) inside Rust [1], letting you migrate to Rust at your own pace without disrupting your website. I think Rust makes a great prototyping and deploy straight to production language. Now it has yet another…
2024 · github.com
- 3RC
2024 · dhc.iwanalabs.com
- 4VM
2018 · docs.vespene.io
- 5HB
Hey all, I just wanted to share a project I've been working on for the past month. After years of heavy frameworks, I really like the idea of using htmx, but it’s a little too low level for me and needs a thin layer above it to facilitate things like components, better syntax with complex JS inside of an attribute, etc To try and solve this problem with a very minimal stack (golang + htmx) that I've been really enjoying, I'm building this project to cater to my needs and was thinking it would be useful for other developers.
2024 · htmgo.dev
- 6DC
Over the past year I’ve been building a set of operational panels for Django: - Redis inspection - cache visibility - Celery task introspection - URL discovery and testing All of these tools have been built inside the Django admin. Instead of jumping between tools like Flower, redis-cli, Swagger, or external services, I wanted something that sits where I’m already working. I’ve grouped these under a single umbrella: Django Control Room. The idea is pretty simple: the Django admin already gives you authentication, permissions, and a familiar interface. It can also act as an operational layer…
Feb 2026 · github.com
- 7ID
2013 · pythonhosted.org
- 8WO
Wagtail is a new, open-source Django CMS focused on flexibility and user experience. It was originally built for the Royal College of Art, but now we're able to share it with everyone. See https://github.com/torchbox/wagtail and http://wagtail.io (marketing site) and http://www.rca.ac.uk/ (first big site built on Wagtail) We're really proud of the user interface, and we hope that Wagtail will make it easy for Django developers to build beautiful, modern sites. Feedback very welcome! Tom Dyson, Technical Director at Torchbox (Wagtail developers)
2014
- 9DK
After a decade of shipping Django to production, I got tired of solving the same setup problems on every new project. Environment-first settings. Sensible auth defaults. Structured logging. CI from day zero. Pre-commit hooks. Docker. Security hardening. Every project meant two days of boilerplate before writing business logic. So I built Django Keel: a production-ready Django starter that eliminates the yak-shaving. GitHub: https://github.com/CuriousLearner/django-keel *What you get*: - 12-factor config with environment-based secrets - Production-hardened security…
Oct 2025 · github.com
- 10DT
Golang is an incredible language for web development. That being said, indie developers and small businesses will likely miss extensive resources found in other projects like Django. Although building an application from the ground up using the standard library is possible, it can be error prone and time consuming. Pocketbase has almost everything an indie developer needs, supporting database, authentication, and file storage into a single, easy-to-deploy executable. Combined with HTMX, and you can created a full stack web application without bloated front end frameworks. That being said,…
2024 · deploysolo.com
- 11PC
2012 · builtbyptm.com
- 12DN
I've developed Django Ninja CRUD, a tool to simplify CRUD operations in Django by leveraging Django Ninja's strengths. It aims to make CRUD operations more intuitive, modular, and efficient, especially for large-scale projects. Key aspects: - Declarative, intuitive CRUD operations. - Modular approach with composition-over-inheritance. - Enhanced testing capabilities for robust applications. The tool is designed to transform Django development workflows, improving efficiency and maintainability. Read more about the development, features and roadmap here:…
2023 · github.com
- 13

- 14SA
The startup I work for has an internal, bash-based, cli that basically amounts to shared aliases with a common entrypoint. As the number of aliases has grown, I've had a desire to group functionality together in subcommands, add more help strings, and have better tab completion. I know I could convert it to, e.g., a python script, but I was curious what was possible if we continued to use bash. I couldn't find anything that solved those problems without lots of extra machinery. I understand why, shell scripts are generally not long, and focused on a dedicated task; adding cli features to…
Mar 2026 · github.com
- 15IM
I'm writing a book which teaches Python/Django web app development for non-programmers, and fundraising on Kickstarter (passed minimum funding, 2 days left): http://hellowebapp.com https://www.kickstarter.com/projects/1868398473/hello-web-app-intro-to-building-web-apps-with-djan It's basically the process I used to teach myself programming as a web designer a few years back, which I then launched a small web app (infant-version of WeddingInviteLove.com), which has grown into my bootstrapped startup which supports me full-time (WeddingLovely.com). Most…
2014
- 16SK
Hey HN! Over the past decade or so, every side project and startup I've built has used more or less the same framework: - a django backend - a react spa frontend - a separate seo-optimized static marketing site (I used to use jekyll, but now I use astro) As many of you can probably relate, I've always started from scratch or grabbed code from old private repos. Half the time this resulted in burning out before I started working on the main project. I decided to take a break and build a truly solid foundation for the things I use in nearly every project. Hopefully some of you find it as…
2024 · djangoreactkit.com
- 17HN
Written in Erlang, lots of new features--I hope you find it cool/useful/interesting.
2012 · icheishvili.github.com
- 18WO
We had a lot of reasons we wanted to build our own help desk, the least of which (and easiest to mention) is that a three seat license to the top tier desk systems are well over $100/mo. Plus they were slowing us down quite a bit. Right now its only dependency is Django, it supports email alert for updates, has bundled style, a permission like public/private/internal status, optional anonymous questions/responses, categories, searching, and a few more I've missed. What I'd like to do is: extend tests, class based views, parse incoming emails as questions & response (this is important for…
2012
- 19RL
Hello, HN! Excited to share Kirimase, a CLI tool I built to scratch a recurring itch: is there a better way to set up my nextjs projects with my essentials packages? If you’ve grappled with the repetitive chore of configuring orm (drizzle orm or prisma), auth (next-auth, clerk or lucia-auth), trpc, shadcn-ui and resend (email), I hope this can help! Features Quick init: Dive straight into development without the mundane initial setup for core packages. Scaffolding: Inspired by the Rails CLI's scaffold feature, Kirimase helps you quickly set up new DB models + controllers (api and trpc…
2023 · github.com
- 20NJ
It's very early days for the project, but I wanted to share it to see if there is interest. It is the final piece of the FastAPI server-side rendering stack I started building with FastHX and htmy (the two dependencies of this project besides FastAPI). Think of it as a more powerful and convenient alternative to tools like FastHTML, powered by FastAPI (without any modifications). I hope you'll like it.
Oct 2025 · volfpeter.github.io
- 21SC
Scaffolder is a CLI tool written in Golang to instantly generate skeleton project structure with boilerplate code, that's taken from configurable YAML file, to quickly kick-start your project I was tired of manually creating the project structure, with all those folder, files... So I decided to create a CLI tool that allows you to instantly generate skeleton projects, based on a reusable YAML file with boilerplate code if specified. YAML is very easy for both humans and programs to work with and parse, hence why it's the most logical choice in context of Scaffolder. Check out the GitHub page…
2023 · github.com
- 22MD
A couple of years ago I wrote Hello Web App (http://hellowebapp.com) to teach beginner Django web app development. It's aimed at non-programmers and designers, and walks folks through building and deploying a basic web app. I'm working on my third book to teach web design fundamentals to programmers (Hello Web Design: https://www.kickstarter.com/projects/1868398473/hello-web-design-design-basics-for-non-designers), so I've made Hello Web App free online during the Kickstarter campaign for the new book. The full Hello Web App tutorial can be accessed here:…
2017
- 23CC
Chris Wiles showcased his setup for Claude Code and I thought it was sick. So I adapted it for Django projects. Several skills have been added to address the pain points in Django development.
Jan 2026 · github.com
- 24DD
2020 · github.com
Ranked by how close each launch is in meaning, then by votes. Refine with a description →