A rails-like framework written for Common Lisp.
Comes out the box with
- Rails-like MVC
- SQlite support and migrations
- htmx
- tailwind
- authentication
- Dockerfile
It's closely modeled after rails, bringing everything necessary to build a web app so you can get your results into a browser.
- Setup quicklisp and a compiler of your choice (tested with SBCL)
- Create a new project with
$ cd ~/quicklisp/local-projects # so can load your new project
$ sbcl --eval "(ql:quickload 'trains:create)" my-appcd my-appsbcl --eval "(ql:quickload :my-app)" --eval "(my-app:main-fn)"- Head to
http://localhost:8080in your browser
