Fork me on GitHub
#chestnut
<
2017-10-17
>
baptiste-from-paris09:10:52

hello friends, does anyone ever deployed a chesnut app to AWS Beanstalk ?

baptiste-from-paris09:10:03

I am struggling with the actual conf

featheredtoast15:10:37

I'm not familiar with beanstalk; what have you got so far?

featheredtoast17:10:20

@baptiste-from-paris not chestnut related, but there does seem to be a lein plugin for elastic beanstalk - https://github.com/ktgit/lein-elastic-beanstalk

baptiste-from-paris17:10:45

yep, you not what, I went with heroku ^^

featheredtoast17:10:54

heroku is the easiest way, for sure 🙂

rgm19:10:27

(defn figwheel-config []
  (update-in (fw-config/fetch-config) [:data :build-ids] #(conj % "devcards")))

(defn dev-system []
  (assoc (betbg.application/app-system (config))
         :figwheel-system (fw-sys/figwheel-system (figwheel-config))
         :css-watcher (fw-sys/css-watcher {:watch-paths ["resources/public/css"]})
         :sass (shell-component "lein" "auto" "sassc" "once")))

rgm19:10:30

re: earlier discussion about getting both devcards and app builds going ... thx @featheredtoast

featheredtoast20:10:54

Oh hey that's actually a lot cleaner than what I have been doing, thanks for sharing! :)