Seungjin Kim
Seungjin Kim
litestream does allow backing up into a file. I know I'm chiming in here a year later - but yeah since one year, Litestream is really picking up some steam...
Ah yes, I agree with the approach.
It's either this or just pushing into wordpress or some static website. It would be amazing if Mastodon would accomplish this.
https://developers.google.com/analytics/devguides/collection/ga4/tag-guide You can actually not use react-ga. Just do what they say to insert it in the top of tag. And then, in your react code - ```window.gtag('event', 'login', {method:...
Question. Is there a way to introduce some environment variable during the `mix deps.get` that is being run whlie building out `.elixir_ls`? In my `config/config.exs` I have this: `config :goth,...
@thomashigginbotham , in my case I have no Compass - specifically disabled sourceMap generation. The only source of sourceMap is created inside cssmin. I still have your exact situation. I...
If you're using OTP26 - https://www.erlang.org/blog/otp-26-highlights/#ssl-safer-defaults Try this in your config: ``` config :my_app, MyApp.Elasticsearch.Cluster, enabled: false, default_options: [ ssl: [{:verify, :verify_none}] #
@danielberkompas Can we merge this in somewhat urgently? Elasticsearch is already at 8.12, and removal of `/_doc` imho is a [change](https://stackoverflow.com/questions/33340153/elasticsearch-bulk-index-json-data) that is due. On a bit of a selfish...
Actually https://github.com/danielberkompas/elasticsearch-elixir/pull/106 might be a better approach I think.
Hello everyone - this is because of Elasticsearch 8.x https://stackoverflow.com/questions/33340153/elasticsearch-bulk-index-json-data Based on the post - 7.x wants this, and what the libarary calls: ``` curl -XPOST localhost:9200/index_local/_doc/_bulk --data-binary @/home/data1.json ```...