These are some words.
monadica is a clojure based application for easy-peasy virtual webhosting.
I am a RackNerd vps host reseller/affiliate.
These are some more statements.
My goal is to script monadica into the RackNerd ecosystem, using mainly clojure tooling, and make it an open option for everyone using the host.
I will eventually build a storefront for monadica.com to sell hosting and professional support services, but until then I can sell basic domain / vps products through my affiliate link: https://my.racknerd.com/aff.php?aff=6796
- Build main blogging / mail list / rss feed site for communicating progress and generating interest
- Build initial mvp for the initial application skeleton / scaffold
- Live REPL
- Progress check: Identify additional ideas to explore featurewise
- Basic CI
- Basic Orchestration
- Basic IDE tools
- Progress check: Taking care of business domain; Assessing
- Domain / Schema
- Business Rules
- Modules
- Progress check: And doing the other business: Selling
- storefront mvp
- create product packages
- market and advertise
Download from https://github.com/gneissguise/monadica
Run the project directly, via :exec-fn
:
$ clojure -X:run-x
Hello, Clojure!
Run the project, overriding the name to be greeted:
$ clojure -X:run-x :name '"Someone"'
Hello, Someone!
Run the project directly, via :main-opts
(-m monadica.monadica
):
$ clojure -M:run-m
Hello, World!
Run the project, overriding the name to be greeted:
$ clojure -M:run-m Via-Main
Hello, Via-Main!
Run the project's tests (they'll fail until you edit them):
$ clojure -T:build test
Run the project's CI pipeline and build an uberjar (this will fail until you edit the tests to pass):
$ clojure -T:build ci
This will produce an updated pom.xml
file with synchronized dependencies inside the META-INF
directory inside target/classes
and the uberjar in target
. You can update the version (and SCM tag)
information in generated pom.xml
by updating build.clj
.
If you don't want the pom.xml
file in your project, you can remove it. The ci
task will
still generate a minimal pom.xml
as part of the uber
task, unless you remove version
from build.clj
.
Run that uberjar:
$ java -jar target/monadica-0.1.0-SNAPSHOT.jar
If you remove version
from build.clj
, the uberjar will become target/monadica-standalone.jar
.
FIXME: listing of options this app accepts.
...
...
MIT License
Copyright (c) 2023 Justin Greisiger Frost
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 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.