Simon
Simon
ref: #1 Rename the module in mix.exs to `CID.MixProject`
ref: #18 Update Readme with more documentation The `why` section needs more info! However the one in https://github.com/dwyl/phoenix-ecto-append-only-log-example#why is already very well written and I'm wondering if we should reference...
linked to: https://github.com/dwyl/phoenix-ecto-append-only-log-example/issues/14#issuecomment-440491063 To keep using microseconds Ecto provide the `naive_datetime_usec` type for your configuration. From the documentation https://github.com/dwyl/alog#repo the setup of the Repo configuration is done on the application...
When retrieving item (with the functions `get` or `all` for example) the inserted_at and updated_at value will always be the same as a new item is inserted on update. So...
alog is checking that the schemas of the application have the minimum fields defined to allow the package to work: https://github.com/dwyl/alog/blob/4cbf9d7f3399a665a9b59c5ed0cb96a0e27afc59/lib/alog.ex#L68 https://github.com/dwyl/alog/blob/4cbf9d7f3399a665a9b59c5ed0cb96a0e27afc59/lib/alog.ex#L79 However it doesn't check that timestamps are defined....
"Our first/next step is to make the docs for https://github.com/dwyl/alog super beginner friendly." :+1: ref: https://github.com/dwyl/technology-stack/issues/67#issuecomment-437145610 see also https://github.com/dwyl/phoenix-ecto-append-only-log-example for an example on how to implement an append only logic...
The `Base.encode` functions are defined here https://github.com/elixir-lang/elixir/blob/master/lib/elixir/lib/base.ex We can have a look at the code and try to understand how the encode functions are defined to see if we can...
https://developers.google.com/web/fundamentals/instant-and-offline/web-storage/offline-for-pwa https://developers.google.com/web/ilt/pwa/live-data-in-the-service-worker The request/response are saved with the cache api (https://developer.mozilla.org/en-US/docs/Web/API/Cache) The recommended api for saving other data is indexedDB (https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API) as the localStorage api is not supported with service...
The PWA tests with Lighthouse return the following report:  The main issue is linked to the `start_url`. I think this might be due to the way Github pages host...
At the moment the Elm application is hosted with Github pages at https://dwyl.github.io/elm-pwa-example/ Github pages is easy to use and very to deploy a new version as it will get...