You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _posts/2019-09-16-set-up-clojure-api.md
+4-3Lines changed: 4 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,13 @@
1
1
---
2
2
layout: post
3
-
title: How to set-up a simple API with Clojure
3
+
title: How to build APIs with Clojure
4
4
date: 2019-09-16
5
5
Author: MatthewLisp
6
6
tags: [learn]
7
7
comments: true
8
8
toc: true
9
9
pinned: false
10
+
excerpt: Learn what you need and how to start developing your own API in clojure using this guide.
10
11
---
11
12
## Introduction
12
13
**What this guide will cover?**<br/>
@@ -32,9 +33,9 @@ You're going to see that the way we are doing is very manual and you have to set
32
33
* Make sure you have [Leiningen](https://leiningen.org/) installed and off course [Clojure](https://clojure.org/guides/getting_started)<br/>
33
34
34
35
**What if i don't have yet what's needed?**<br/>
35
-
I recommend you take a look on the resources i've curated to learn clojure and at least understand the language core aspects: https://github.com/matthewlisp/learn-clojure
36
+
I recommend you take a look on the resources i've curated to learn clojure and at least understand the language core aspects: [https://github.com/matthewlisp/learn-clojure](https://github.com/matthewlisp/learn-clojure)
36
37
37
-
***I strongly suggest that you follow the guide while replicating all steps on your machine.***
38
+
***I strongly suggest that you follow the guide while replicating all steps on your machine. Here's the [github repo](https://github.com/matthewlisp/clj-api-template) of the entire code***
38
39
39
40
## How libraries are organized
40
41
It's nice to know how libraries are organized in clojure, because this will help you understand your namespace definitions and how to navigate inside documentations.<br/>
0 commit comments