init project

This commit is contained in:
Travis Shears 2025-06-07 17:31:09 +02:00
commit 4c1021cfd0
6 changed files with 34 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
.clj-kondo
.lsp

20
LICENSE.md Normal file
View file

@ -0,0 +1,20 @@
ANTI-CAPITALIST SOFTWARE LICENSE (v 1.4)
Copyright © 2022 Travis Shears
This is anti-capitalist software, released for free use by individuals and organizations that do not operate by capitalist principles.
Permission is hereby granted, free of charge, to any person or organization (the "User") obtaining a copy of this software and associated documentation files (the "Software"), to use, copy, modify, merge, distribute, and/or sell copies of the Software, subject to the following conditions:
1. The above copyright notice and this permission notice shall be included in all copies or modified versions of the Software.
2. The User is one of the following:
- An individual person, laboring for themselves
- A non-profit organization
- An educational institution
- An organization that seeks shared profit for all of its members, and allows non-members to set the cost of their labor
3. If the User is an organization with owners, then all owners are workers and all workers are owners with equal equity and/or equal vote.
4. If the User is an organization, then the User is not law enforcement or military, or working for or under either.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT EXPRESS OR IMPLIED WARRANTY OF ANY KIND, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

2
bb.edn Normal file
View file

@ -0,0 +1,2 @@
{:paths ["src"]
:deps {}}

1
src/cli_cms/create.clj Normal file
View file

@ -0,0 +1 @@
(ns cli-cms.create)

1
src/cli_cms/edit.clj Normal file
View file

@ -0,0 +1 @@
(ns cli-cms.edit)

8
src/cli_cms/main.clj Normal file
View file

@ -0,0 +1,8 @@
(ns cli-cms.main
(:require [babashka.http-client :as http]))
(defn -main [& args]
(case (first args)
"create" (println "TODO: implment create snippet")
"edit" (println "TODO: implment edit snippet")
(println "Missing command. Try 'create' or 'edit'.")))