From 1fa978e4ccc9e772b7e24d607afabda53b73b6b7 Mon Sep 17 00:00:00 2001 From: ansgarz Date: Mon, 13 Jun 2022 18:02:44 +0200 Subject: [PATCH] upd README.md --- README.md | 7 ++----- src/test/cljs/dda/c4k_gitea/browser_test.cljs | 10 ---------- 2 files changed, 2 insertions(+), 15 deletions(-) delete mode 100644 src/test/cljs/dda/c4k_gitea/browser_test.cljs diff --git a/README.md b/README.md index 507d4d7..f87bb0d 100644 --- a/README.md +++ b/README.md @@ -19,11 +19,6 @@ Click on the image to try out live in your browser: Your input will stay in your browser. No server interaction is required. -You will also be able to try out on cli: -``` -target/graalvm/c4k-gitea src/test/resources/valid-config.edn src/test/resources/valid-auth.edn | kubeval - -target/graalvm/c4k-gitea src/test/resources/valid-config.edn src/test/resources/valid-auth.edn | kubectl apply -f - -``` ## Gitea setup @@ -32,6 +27,8 @@ After having deployed the yaml-file generated by the c4k-gitea module you need t * Open the URL of your just deployed gitea-server and you will be shown a configuration page. * Add the administrator's data and submit the page. * The required database will be created and the Gitea setup will be completed. +* The SSH-URL for a repo has the format: "ssh://git@domain:30005/[]/[repo].git + Example: "git clone ssh://git@repo.test.meissa-gmbh.de:30005/myuser/c4k-gitea.git" ## License diff --git a/src/test/cljs/dda/c4k_gitea/browser_test.cljs b/src/test/cljs/dda/c4k_gitea/browser_test.cljs deleted file mode 100644 index b2605e6..0000000 --- a/src/test/cljs/dda/c4k_gitea/browser_test.cljs +++ /dev/null @@ -1,10 +0,0 @@ -(ns dda.c4k-gitea.browser-test - (:require - [cljs.test :refer-macros [deftest is are testing run-tests]] - [hickory.render :as hr] - [dda.c4k-gitea.browser :as cut])) - -(deftest should-generate-group - (is (= "
id1
content
" - (apply hr/hickory-to-html - (cut/generate-group "id1" "content")))))