Peter Saxton
Peter Saxton
Travis is a nice build too for open source. The steps to add CI to a project should be: - Enable travis builds on your repository. - Link github to...
A production image does not need code reloading. To make production images smaller this image should make a release and add it to the final Dockerfile in a Docker multistage...
This test is skipped because `Raxx.Blueprint` does not add a 404 response handler https://github.com/CrowdHailer/elixir-on-docker/blob/master/integration/test/integration_test.exs#L14 To remove this `:skip` tag a PR will be need on `Raxx.Blueprint` to return a 404...
This project is meant to make it very easy to start with docker-cloud. Somewhere it should contain a walkthrough with steps to put the template project. (As unchanged as possible)...
At the moment this template sets a cookie value to "changeme" through the environment variable `ERLANG_COOKIE` If this value is unchanged then should we prevent the application from starting? Unfortunately...
If the environment does not have a value for `ERLANG_COOKIE` set then the startup script fails with a very cryptic message (`No file named mix`). This is I assume because...
The current template defines the path to the blueprint file twice. ```elixir @external_resource "lib/www.apib" use Raxx.Blueprint, "./www.apib" ``` This is confusing as one definition is relative to the project root...
The `WWW` module in the should have some a few standard docs to get started with. - hello etc - explain that this is a router file, with routes defined...
Is there a simple guide for adding OpenID to an application. Something at this level, and maybe for rails or perhaps it can be done at the rack level. https://dev.to/crowdhailer/adding-did-authentication-to-a-phoenix-web-app-18ec...
https://github.com/CrowdHailer/raxx_kit/blob/master/priv/template/lib/app_name/www.ex.eex#L13 At the moment the session name is always "my_app_session" this can conflict if you have more than one local project.