Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 26 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,38 @@ A minimal application to book personal appointments for deployment on [applicati

Install the `garden` utility as described [here](https://docs.apps.garden/#installing-the-cli).

`garden run`
Run the project locally using `run`:

```shell
garden run --project .
```

Or:

```shell
garden run --project calendula
```

## Deploy

`garden deploy`
Deploy the project remotely using `deploy`:

```shell
garden deploy --project .
```

Or:

```shell
garden deploy --project calendula
```

## Help

`garden help`
```shell
garden help
```

## License

Copyright © 2024 Nextjournal
Copyright © 2025 Nextjournal
1 change: 0 additions & 1 deletion garden.edn

This file was deleted.

1 change: 1 addition & 0 deletions src/calendula.clj
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@
(defn index [req]
(let [uname (username req)]
(impulse/page
{:title "Calendula"}
[:nav
[:ul
[:li
Expand Down