-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 269b426
Showing
10 changed files
with
1,003 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
resources/public/js | ||
node_modules | ||
.cpcache | ||
.shadow-cljs | ||
.nrepl-port |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Gift List App | ||
|
||
This is a work in progress web app that allows people to build and share gift lists. Invited participants can claim gifts without the creator knowing, similar to a baby or wedding registry. The development process is being documented on [my blog](https://chrisodonnell.dev); see the [introductory post](https://chrisodonnell.dev/posts/giftlist/intro/) for context. | ||
|
||
## Setup | ||
|
||
In order to run this application, you need to have the following installed: | ||
* [node.js](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm) | ||
* [java](https://adoptopenjdk.net/) | ||
* [clojure cli](https://clojure.org/guides/getting_started) | ||
|
||
With these installed, run | ||
```bash | ||
npm install | ||
``` | ||
|
||
to install javascript dependencies. | ||
|
||
## Running | ||
|
||
To run this application in development mode, start a shadow-cljs server with | ||
```bash | ||
npx shadow-cljs -d nrepl:0.7.0-beta1 -d cider/piggieback:0.4.2 -d refactor-nrepl:2.5.0 -d cider/cider-nrepl:0.25.0-SNAPSHOT server | ||
``` | ||
|
||
Alternatively, CIDER users can run `cider-jack-in-cljs`. With this running, you can control compilation by accessing the shadow-cljs server at http://localhost:9630 and access the application at http://localhost:8080. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{:paths ["src" "resources"] | ||
:deps {com.fulcrologic/fulcro {:mvn/version "3.1.20"} | ||
com.taoensso/timbre {:mvn/version "4.10.0"}} | ||
:aliases {:dev {:extra-paths ["dev"] | ||
:jvm-opts ["-Dtrace"] | ||
:extra-deps {org.clojure/clojurescript {:mvn/version "1.10.597"} | ||
thheller/shadow-cljs {:mvn/version "2.8.83"} | ||
fulcrologic/fulcro-inspect {:mvn/version "2.2.5"} | ||
binaryage/devtools {:mvn/version "0.9.10"}}}}} |
Oops, something went wrong.