about summary refs log tree commit diff
path: root/blog
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-01-23T16·34+0000
committerWilliam Carroll <wpcarro@gmail.com>2020-01-23T16·34+0000
commit2c28f85946538397e0a32ef334b525e5db29712c (patch)
tree11981872e137a8bfb55f0a2033dc1bda3ad80acf /blog
parent7f37acf548307448c92bd567de096d5734ac6f0d (diff)
Start working on a blog
Attempting to write a blog where:

- The server is Common Lisp. Why? I'd like to learn Common Lisp.
- The blog posts can be written in Markdown.
- The package is developed and deployed using Nix.

Most of this is a learning exercise. The blog itself is something that I'd like
to use instead of Medium and other forums.
Diffstat (limited to 'blog')
-rw-r--r--blog/default.nix15
-rw-r--r--blog/posts/test.md4
-rw-r--r--blog/src/server.lisp10
3 files changed, 29 insertions, 0 deletions
diff --git a/blog/default.nix b/blog/default.nix
new file mode 100644
index 000000000000..7005cc648d00
--- /dev/null
+++ b/blog/default.nix
@@ -0,0 +1,15 @@
+{
+  depot ? import <depot> {},
+  universe ? import <universe> {},
+  ...
+}:
+
+depot.nix.buildLisp.program {
+  name = "server";
+  deps = with depot.third_party.lisp; [
+    hunchentoot
+  ];
+  srcs = [
+    ./src/server.lisp
+  ];
+}
diff --git a/blog/posts/test.md b/blog/posts/test.md
new file mode 100644
index 000000000000..ec2e030b2824
--- /dev/null
+++ b/blog/posts/test.md
@@ -0,0 +1,4 @@
+# Testing
+
+The goal here is to be able to write markdown files and have a server that can
+render the markdown into HTML and serve them to the clients.
diff --git a/blog/src/server.lisp b/blog/src/server.lisp
new file mode 100644
index 000000000000..63323e933bd3
--- /dev/null
+++ b/blog/src/server.lisp
@@ -0,0 +1,10 @@
+(in-package #:cl-user)
+(defpackage #:server
+  (:documentation "Robot condemned to a life of admin work for my blog.")
+  (:use #:cl)
+  (:export :main))
+(in-package #:server)
+
+(defun main ()
+  "This is the main entrypoint for our application."
+  (hunchentoot))