1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-09 16:26:53 +02:00

Made beginning easier

This commit is contained in:
Adam
2014-09-06 10:28:58 +02:00
parent 94bdf4c9e5
commit c0d8a18b08

View File

@@ -23,20 +23,22 @@ in Clojure with minimal effort:
(run-server myapp {:port 5000}))
```
Create a project with [Leiningen](http://leiningen.org/):
**Step 1:** Create a project with [Leiningen](http://leiningen.org/):
```
lein new myapp
```
Add your dependencies:
**Step 2:** Put the above code in `src/myapp/core.clj`
**Step 3:** Add some dependencies to `project.clj`:
```
[compojure "1.1.8"]
[http-kit "2.1.16"]
```
And run:
**Step 4:** Run:
```
lein run -m myapp.core