Biff Clojure Web Framework
repository·master·Indexed 22 days ago
https://github.com/jacobobryant/biffA Clojure web framework tailored for solo developers, providing a cohesive and streamlined environment for building web applications.
What's inside Biff
- Biff is a Clojure web framework specifically designed for solo developers. It aims to provide a streamlined experience for building web applications.
Configure a Biff CLI alias
masterTo simplify running Biff commands, you can add an alias to your shell configuration file (e.g.,
.bashrc). This allows you to usebiffinstead of the fullclj -M:devcommand.Add the following line to your
.bashrc:alias biff='clj -M:dev'How to run Biff in development mode
masterTo start developing with Biff, you can use either the
bbtool or the standard Clojure CLI.If you are working directly in the Biff repository, run:
bb devIf you are working within a starter project, navigate to the starter directory and run:
cd starter; clj -M:dev devNote that the starter project's
deps.ednis configured to use a local dependency on the Biff library code.Start the Biff development environment
masterTo begin working on the Biff starter project, run the following command to launch the development environment:
clj -M:dev devYou can also use the
--helpflag to see a list of all available commands available via the:devalias.