Init new project from lein

This commit is contained in:
Yann Esposito (Yogsototh) 2021-08-18 11:17:10 +02:00
commit 184cd86264
Signed by untrusted user who does not match committer: yogsototh
GPG key ID: 7B19A4C650D59646
8 changed files with 70 additions and 0 deletions

13
.gitignore vendored Normal file
View file

@ -0,0 +1,13 @@
/target
/classes
/checkouts
profiles.clj
pom.xml
pom.xml.asc
*.jar
*.class
/.lein-*
/.nrepl-port
/.prepl-port
.hgignore
.hg/

24
CHANGELOG.md Normal file
View file

@ -0,0 +1,24 @@
# Change Log
All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/).
## [Unreleased]
### Changed
- Add a new arity to `make-widget-async` to provide a different widget shape.
## [0.1.1] - 2021-08-18
### Changed
- Documentation on how to make the widgets.
### Removed
- `make-widget-sync` - we're all async, all the time.
### Fixed
- Fixed widget maker to keep working when daylight savings switches over.
## 0.1.0 - 2021-08-18
### Added
- Files from the new template.
- Widget maker public API - `make-widget-sync`.
[Unreleased]: https://sourcehost.site/your-name/inmanis/compare/0.1.1...HEAD
[0.1.1]: https://sourcehost.site/your-name/inmanis/compare/0.1.0...0.1.1

1
LICENSE Normal file
View file

@ -0,0 +1 @@
Copyright Yann Esposito 2021

11
README.md Normal file
View file

@ -0,0 +1,11 @@
# inmanis
An application to fix the shitty WWW we have today.
## Usage
## License
Copyright © 2021 Yann Esposito

3
doc/intro.md Normal file
View file

@ -0,0 +1,3 @@
# Introduction to inmanis
TODO: write [great documentation](http://jacobian.org/writing/what-to-write/)

5
project.clj Normal file
View file

@ -0,0 +1,5 @@
(defproject inmanis "0.1.0-SNAPSHOT"
:description "Fix the Internet of shit"
:url "https://gitea.esy.fun/yogsototh/inmanis-clj"
:dependencies [[org.clojure/clojure "1.10.1"]]
:repl-options {:init-ns inmanis.core})

6
src/inmanis/core.clj Normal file
View file

@ -0,0 +1,6 @@
(ns inmanis.core)
(defn foo
"I don't do a whole lot."
[x]
(println x "Hello, World!"))

View file

@ -0,0 +1,7 @@
(ns inmanis.core-test
(:require [clojure.test :refer :all]
[inmanis.core :refer :all]))
(deftest a-test
(testing "FIXME, I fail."
(is (= 0 1))))