This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2021-03-22
Channels
- # announcements (1)
- # babashka (28)
- # beginners (120)
- # braveandtrue (6)
- # calva (59)
- # cider (10)
- # clj-kondo (10)
- # cljfx (2)
- # clojure (66)
- # clojure-europe (20)
- # clojure-germany (1)
- # clojure-italy (3)
- # clojure-nl (4)
- # clojure-norway (1)
- # clojure-serbia (17)
- # clojure-spain (1)
- # clojure-uk (17)
- # clojurescript (120)
- # clojureverse-ops (4)
- # core-async (5)
- # cursive (18)
- # data-oriented-programming (1)
- # datomic (4)
- # deps-new (8)
- # emacs (14)
- # fulcro (16)
- # funcool (2)
- # kaocha (4)
- # lambdaisland (5)
- # luminus (1)
- # malli (47)
- # membrane (9)
- # mid-cities-meetup (2)
- # music (1)
- # off-topic (44)
- # pathom (13)
- # practicalli (2)
- # re-frame (15)
- # reagent (34)
- # reveal (25)
- # ring (56)
- # rum (1)
- # shadow-cljs (23)
- # sql (14)
- # startup-in-a-month (1)
- # tools-deps (10)
- # vim (9)
- # vscode (3)
- # xtdb (9)
Awesome, thanks alot @seancorfield 🙂
Okay following the video I now find that those ae not the only aliases I will need , I think there are more e.g
clojure -M:rebel:reveal:addlibs:test:dev
WARNING: Specified aliases are undeclared: [:rebel :reveal :addlibs :dev]
Is there a precursor tutorial I should follow to setup my environment?
I'm following your tutorial on repl driven development because I would like to know how to create a web app with Clojure from scratch.
One of my friends emphasized that the best way to go is to follow the repl driven development technique.Sean and I both have shared our user level configuration that includes a wide number of aliases for development tools Here is a page from the Practicalli Clojure book that shows how to install this configuration https://practicalli.github.io/clojure/clojure-tools/install/community-tools.html The pages that follow show common tasks and the description of all the aliases and tools available
There is also a link to Sean’s configuration in the Clojure-deps-edn project readme
@U01RVS03CAZ Here’s the link to my config https://github.com/seancorfield/dot-clojure which has all the aliases you see in my talk (there’s a page or two of links at the end of my presentation BTW and you can find the slide deck here https://corfield.org/pages/presentations/ with links to both recordings of the talk).
It’s not really intended to be a tutorial — more an example of what the RDD techniques involve — and I tend to change the contents of my dot-clojure files fairly regularly. The assumption is that you install the whole thing: the whole deps.edn
file and the dev.clj
file as well (since it is used by the :dev/repl
alias — which is the new name for the :dev
alias since that conflicted with a common alias in various other projects).
Still, I’m happy to answer question about anything that comes up in the talk recordings.