Skip to content

Commit 6f3795a

Browse files
Fixed local deployment instructions
- Fixed the local deployment instructions - Strike out some old command which are not working in user namespace repl - Added a note about log-data being old, need updated data for new development.
1 parent 5fc3cda commit 6f3795a

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

README.md

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
# Clojurians Log App [![CircleCI](https://circleci.com/gh/clojureverse/clojurians-log-app.svg?style=svg)](https://circleci.com/gh/clojureverse/clojurians-log-app)
22

3-
Clojure web app that serves up Slack chat history. This app was created to
4-
replace the old scripts that generated the site at
5-
[clojurians-log.clojureverse.org](https://clojurians-log.clojureverse.org). This
6-
app isn't live yet, but you can see it in action at
7-
[clojurians-log-staging.clojureverse.org](http://clojurians-log-staging.clojureverse.org).
3+
Clojure web app that serves up Slack chat history. This app code is live and avialable for preview at
4+
[clojurians-log.clojureverse.org](https://clojurians-log.clojureverse.org).
85

96
Besides serving its utilitarian function of serving logs, this also serves as an
107
example open-source Clojure web app. It's small enough to easily understand and
@@ -29,10 +26,19 @@ but also has some
2926

3027
## Running the app
3128

32-
To run the app on your own laptop, you should first grab the [demo
29+
To run the app on your own laptop, you should first grab the [clojurians-log-app](https://github.com/clojureverse/clojurians-log-app) in a directory.
30+
31+
``` shell
32+
git clone https://github.com/clojureverse/clojurians-log-app.git
33+
cd clojurians-log-app
34+
```
35+
36+
And for the ease of trying out locally, let's also grab some [demo
3337
data](https://github.com/clojureverse/clojurians-log-demo-data), so you have
3438
some Slack history to look at.
3539

40+
> P.S.: This is very old data and few new code related changes will not be rendered with this (like emoji reaction etc)`
41+
3642
``` shell
3743
git clone https://github.com/clojureverse/clojurians-log-demo-data.git
3844
```
@@ -86,8 +92,8 @@ user> (conn) ;; Datomic connection
8692
user> (add-dependency [foo/bar "1.2.3"]) ;; Add a dependency without having to restart
8793
user> (reset) ;; Reload modified namespaces and restart the app
8894
user> (reset-all) ;; Reload all namespaces and restart the app
89-
user> (last-request) ;; See the last ring request handled
90-
user> (last-response) ;; See the last response the app generated
95+
~~user> (last-request) ;; See the last ring request handled~~
96+
~~user> (last-response) ;; See the last response the app generated~~
9197
```
9298

9399
### Tests

0 commit comments

Comments
 (0)