From 345b7c18f74af579693f82f6b760a7b49d13cb52 Mon Sep 17 00:00:00 2001 From: ckonstanski Date: Sat, 22 Nov 2025 14:19:22 -0700 Subject: docker-compose --- ci/data/etc/ldapadmin/figwheel-main.edn | 34 +++++++++++++++++++++++++++++++++ ci/data/etc/ldapadmin/options.lisp | 11 +++++++++++ 2 files changed, 45 insertions(+) create mode 100644 ci/data/etc/ldapadmin/figwheel-main.edn create mode 100644 ci/data/etc/ldapadmin/options.lisp (limited to 'ci/data/etc/ldapadmin') diff --git a/ci/data/etc/ldapadmin/figwheel-main.edn b/ci/data/etc/ldapadmin/figwheel-main.edn new file mode 100644 index 0000000..864266c --- /dev/null +++ b/ci/data/etc/ldapadmin/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/ldapadmin/options.lisp b/ci/data/etc/ldapadmin/options.lisp new file mode 100644 index 0000000..3d35ea0 --- /dev/null +++ b/ci/data/etc/ldapadmin/options.lisp @@ -0,0 +1,11 @@ +((:name "ldapadmin" + :url "http://localhost:3006" + :document-root "ldapadmin" + :title "LDAP Administration Tool" + :meta-description "LDAP Administration Tool" + :ldap (:ldap-host "ldap.pippiandcarlos.com" + :sslflag nil + :username "cn=Manager,dc=pippiandcarlos,dc=com" + :password "ayluvmiym" + :base-dn "dc=pippiandcarlos,dc=com" + :debug-mode nil))) -- cgit v1.3