Peter Saxton
Peter Saxton
I think just a case of passing line as an option to `EEx.compile_` There are some issues with generating a single AST from multiple templates, i.e. wrapping the layout. Here...
I have a few extra test cases in my servers test suite that I think could be moved to h2spec. I just wanted to check I hadn't missed them before...
The homepage template is incredibly bare bone. https://github.com/CrowdHailer/elixir-on-docker/blob/master/www/lib/www/home_page.html.eex It should be extended and receive some simple styling.
browser should have all the defaults in phoenix stack like secure headers, api accept json. basically exactly match phoenix template. https://github.com/phoenixframework/phoenix/blob/b7adcb4cb7a564d075304de21f61e07e0879c9a0/installer/templates/phx_web/router.ex#L4-L14
Is it possible to mount a volume to the home directory with an erlang cookie, a for of secrets management. This would negate the need for a `start.sh` script erlang.org/doc/reference_manual/distributed.html
Before tagging/pushing an image need to make sure the image is built to the latest version. This error can cause confusion because of the volume mounting and live reloading. The...
Using Diayzer should be considered best practise for projects. To encourage this PR should - Add type specs where appropriate to the `www` service. - Document running the dialyser task...
Docker compose has the concepts of secrets. Once these are added to docker swarm/cloud we should move the certificates from the priv directory. The current setup is unsatisfactory for a...
This bug will require a fix in ExSync. Full description on the issue thread https://github.com/falood/exsync/issues/14
For example if running `mix deps.get` inside a container the files cannot be modified/deleted on the host system without sudo. This was tackled in a Tokumei project generator here, but...