A music player that connects to your cloud/distributed storage.
1# Infrastructure
2
3Elm directories:
4
5- Applications/Brain
6- Applications/UI
7- Library
8
9`UI` is the Elm application that'll be executed on the main thread (ie. the UI thread) and `Brain` is the Elm application that'll live inside a web worker. `UI` will be the main application and `Brain` does the heavy lifting. The code shared between these two applications lives in `Library`. The library also contains the more "generic" code that's not necessarily tied to one or the other.
10
11
12
13## Emoji Comments
14
15```
16⛩ Gates (Flags & Ports)
17🌳 Types & Initial State
18📣 Updates
19📰 Subscriptions
20🗺 Views
21
22🧠 Brain
23🔱 Functions
24🖼 Styles
25㊙️ Secret
26```