diff options
| author | ckonstanski <carlos.konstanski@olo.com> | 2025-11-16 11:16:00 -0700 |
|---|---|---|
| committer | ckonstanski <carlos.konstanski@olo.com> | 2025-11-16 11:16:00 -0700 |
| commit | 313fb607c03082750fbde9135cadf4a35db9d5b4 (patch) | |
| tree | 7299ff89c1e24568f401296b13d213ed1f0d98fb /ci/data/etc | |
| parent | 4f709f16c98624cae548d2516749bf7c6da903e8 (diff) | |
move CI to docker-compose
Diffstat (limited to 'ci/data/etc')
| -rw-r--r-- | ci/data/etc/bogenherr/figwheel-main.edn | 34 | ||||
| -rw-r--r-- | ci/data/etc/bogenherr/options.lisp | 15 | ||||
| -rw-r--r-- | ci/data/etc/sbclrc | 6 |
3 files changed, 55 insertions, 0 deletions
diff --git a/ci/data/etc/bogenherr/figwheel-main.edn b/ci/data/etc/bogenherr/figwheel-main.edn new file mode 100644 index 0000000..864266c --- /dev/null +++ b/ci/data/etc/bogenherr/figwheel-main.edn @@ -0,0 +1,34 @@ +;; Figwheel-main configuration options see: https://figwheel.org/config-options +;; these will be overriden by the metadata config options in dev.cljs.edn build file +{ + ;; Set the server port https://figwheel.org/config-options#ring-server-options + ;; :ring-server-options {:port 9500} + + ;; Change the target directory from the "target" to "resources" + ;; https://figwheel.org/config-options#target-dir + ;; :target-dir "resources" + + ;; Server Ring Handler (optional) https://figwheel.org/docs/ring-handler.html + ;; If you want to embed a ring handler into the figwheel server, this + ;; is for simple ring servers + ;; :ring-handler hello_world.server/handler + + ;; To be able to open files in your editor from the heads up display + ;; you will need to put a script on your path. This script will have + ;; to take a file path and a line number ie. + ;; in ~/bin/myfile-opener: + ;; + ;; #! /bin/sh + ;; emacsclient -n +$2:$3 $1 + ;; + ;; :open-file-command "myfile-opener" + + ;; if you are using emacsclient you can just use + ;; :open-file-command "emacsclient" + + ;; Logging output gets printed to the REPL, if you want to redirect it to a file: + ;; :log-file "figwheel-main.log" + + :target-dir "resources" + :open-url false +} diff --git a/ci/data/etc/bogenherr/options.lisp b/ci/data/etc/bogenherr/options.lisp new file mode 100644 index 0000000..25f2ec2 --- /dev/null +++ b/ci/data/etc/bogenherr/options.lisp @@ -0,0 +1,15 @@ +(:name "bogenherr" + :scheme "http" + :url "www.bogenherr.org" + :document-root "bogenherr" + :title "Bogenherr Violin and Viola Lessons" + :meta-description "Bogenherr Violin and Viola Lessons written in Common Lisp/Hunchentoot and ClojureScript." + :databases (:db-bogenherr ("bogenherr" "bogenherr" "neweboy" "127.0.0.1")) + :mail-mx "mail.bogenherr.org" + :mail-from "postmaster@bogenherr.org" + :mail-postmaster "postmaster@bogenherr.org" + :mail-webmaster "webmaster@bogenherr.org" + :mail-info "postmaster@bogenherr.org" + :mail-login-notify "postmaster@bogenherr.org" + :mail-authentication (:login "me@ckons.org" "ayluvmiym") + :mail-ssl :starttls) diff --git a/ci/data/etc/sbclrc b/ci/data/etc/sbclrc new file mode 100644 index 0000000..3a931d0 --- /dev/null +++ b/ci/data/etc/sbclrc @@ -0,0 +1,6 @@ +;;; The following lines added by ql:add-to-init-file: +#-quicklisp +(let ((quicklisp-init (merge-pathnames "quicklisp/setup.lisp" + (user-homedir-pathname)))) + (when (probe-file quicklisp-init) + (load quicklisp-init))) |
