chestnut

baptiste-from-paris 2017-10-17T09:15:52.000133Z

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

baptiste-from-paris 2017-10-17T09:16:03.000200Z

I am struggling with the actual conf

2017-10-17T15:48:37.000423Z

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

2017-10-17T17:48:20.000158Z

@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-paris 2017-10-17T17:48:45.000260Z

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

2017-10-17T17:52:54.000150Z

heroku is the easiest way, for sure 🙂

rgm 2017-10-17T19:46:27.000228Z

(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")))

rgm 2017-10-17T19:47:30.000557Z

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

2017-10-17T20:04:54.000202Z

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

1👍