<FromGitter>
<damianham> @pynixwang @alex-lairan it is easy to write modular app with Amber - see https://github.com/damianham/amber_modular . That is a recipe. You can create an app with this recipe with ⏎ ⏎ ```amber new myapp -r damianham/amber_modular``` ⏎ ⏎ then you can see how it works and how easy it is. For example of a modular Amber app in production see https://www.smartboatnetwork.com - that was created with the
<FromGitter>
<damianham> I want to add to add a couple of things in particular to my application, password reset ala devise and a user community forum with groups, threads, posts and comments. Does anyone have any modules (or controllers, models, views) I could use ? My application is a React UI so any React stuff would be most welcome.
<FromGitter>
<smadeja> Hello Amber People! I have a quick question about the public folder. Shouldn’t it be added to the gitignore file? It doesn’t look like something you’d want to put under version control
<FromGitter>
<damianham> @smadeja the public folder contains the assets, e.g. favicon, logo, bundles, images etc so I am sure you want it under SCM
<FromGitter>
<smadeja> Actually, public/dist is the only folder I’m concerned about. Why commit webpack’s output? All the sources are stored in src/assets and all the dependecies defined in package-lock.json
<FromGitter>
<smadeja> I understand commiting static assets, but why commit something that can be generated at any time using information that’s already present in the repo?