first push

This commit is contained in:
ava fox 2019-12-31 00:15:51 -05:00
commit 7377cb697c
6 changed files with 36 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*.config$
*.fasl

9
README.md Normal file
View File

@ -0,0 +1,9 @@
# glacier
### _ava fox_
lightweight wrapper for making mastodon bots
## License
BSD 3-Clause

13
glacier.asd Normal file
View File

@ -0,0 +1,13 @@
;;;; glacier.asd
(asdf:defsystem #:glacier
:description "lightweight mastodon bot framework"
:author "ava fox"
:license "BSD 3-Clause"
:version "0.0.1"
:serial t
:depends-on (#:dexador #:bordeaux-threads
#:websocket-driver #:simple-config
#:with-user-abort)
:components ((:file "package")
(:file "glacier")))

2
glacier.config.example Normal file
View File

@ -0,0 +1,2 @@
mastodon-instance = mastodon.social
mastodon-token = somethingReallyLongAnd_Complicated

3
glacier.lisp Normal file
View File

@ -0,0 +1,3 @@
;;;; glacier.lisp
(in-package #:glacier)

7
package.lisp Normal file
View File

@ -0,0 +1,7 @@
;;;; package.lisp
(defpackage #:glacier
(:use #:cl #:with-user-abort)
(:import-from :simple-config
:load-config
:config))