https://github.com/jackdbd/tweedler
A simple app for practicing Clojure
https://github.com/jackdbd/tweedler
Last synced: 4 months ago
JSON representation
A simple app for practicing Clojure
- Host: GitHub
- URL: https://github.com/jackdbd/tweedler
- Owner: jackdbd
- License: mit
- Created: 2020-05-04T17:14:43.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2025-01-08T08:49:32.000Z (over 1 year ago)
- Last Synced: 2025-02-23T17:37:24.478Z (over 1 year ago)
- Language: Clojure
- Homepage: https://tweedler.fly.dev/
- Size: 656 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Tweedler
A simple app for practicing Clojure.

## Test
Run all tests:
```sh
bb tests
```
## Build
Create an uberjar:
```sh
bb build:uberjar
```
Run the uberjar:
```sh
java -jar $JVM_OPTS target/tweedler-standalone.jar
```
## Containerized app
Build the container image and give it a name and a version tag:
```shell
bb container:build
```
Run the container:
```shell
bb container:run
```
## Other
Generate a graph of dependencies between namespaces using [clj-hiera](https://github.com/greglook/clj-hiera). You will need to have [Graphviz](https://graphviz.org/) installed.
```sh
bb graph
```