-
Notifications
You must be signed in to change notification settings - Fork 0
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
awb99
committed
Apr 13, 2024
1 parent
25f603c
commit a65fde6
Showing
5 changed files
with
33 additions
and
3 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 |
---|---|---|
|
@@ -35,7 +35,6 @@ jobs: | |
CLOJARS_PASSWORD: ${{ secrets.ReleasePassword }} | ||
CODECOV_TOKEN: ${{ secrets.CodecovToken }} | ||
run: | | ||
cd reval-ui | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "CI/CD" | ||
clojure -T:build jar | ||
|
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
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,12 @@ | ||
#!/usr/bin/env /home/florian/babashka/bb | ||
|
||
(require '[babashka.deps :as deps]) | ||
(deps/add-deps | ||
'{:deps {org.babashka/http-server {:mvn/version "0.1.11"}}}) | ||
|
||
(require '[babashka.http-server :as http-server]) | ||
|
||
(println "open http://localhost:8080/static") | ||
|
||
(http-server/exec {:port 8080 | ||
:dir "./target"}) |
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,10 @@ | ||
#!/usr/bin/env /home/florian/babashka/bb | ||
|
||
(require '[babashka.deps :as deps]) | ||
(deps/add-deps | ||
'{:deps {org.babashka/http-server {:mvn/version "0.1.11"}}}) | ||
|
||
(require '[babashka.http-server :as http-server]) | ||
|
||
(http-server/exec {:port 8080 | ||
:dir "./target/static"}) |
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,10 @@ | ||
#!/bin/sh | ||
|
||
rm target -r | ||
rm .shadow-cljs -r | ||
|
||
clojure -X:webly:npm-install | ||
clojure -X:webly:release-adv | ||
clojure -X:webly:static | ||
clojure -X:nbeval | ||
cp target/webly/public/rdocument target/static/r -r |