factsfinder
Hello everyone, I’ve created an API only phoenix boilerplate. You can check on github here: GitHub - factsfinder/phoenix_api: This is an api only phoenix framework boilerplate which supports graphql, authentication and aws/backblaze s3 and thumbnailing out the box as of now. · GitHub
I’ve come across elixir and Pheonix only an year ago. Decided to make a boilerplate out of my current side project’s phoenix api.
Hopefully it will be useful or save time of atleast one of ya.
Thanks and keep drinking elixir everyday ![]()
Trending in Discussions
As the title says, please share what you’ve been up to with Elixir. Whether that’s been learning it, looking into it, making stuff with i...
New
Hey there,
It’s been more than a year since we started using LiveView as our main UI library and building a whole library of UI componen...
New
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Quite interesting article Google brought me. Didn’t find any mentions about it here.
What do you think in general? Would you use togethe...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Since we have deprecated our Erlang sections (as we have dedicated Erlang Forums now) let’s add this thread for those who’d like to post ...
New
:warning: Security advisory: Decimal DoS vulnerability
A vulnerability has been published for decimal where very large exponents can cau...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Xamal is a deployment tool for Elixir apps that deploys native releases to bare metal servers over SSH. It’s a port of GitHub - basecamp/...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #security










Showing Posts 1 to 5- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
sergio
I notice you’re using Backblaze instead of S3. Something I also wanted to look into, can you describe that process a bit more? Is it doing a direct upload to backblaze? Or does the file pass through the server?
factsfinder
Sure. Using Backblaze cause b2 cloud storage is s3 compatible Low Cost, High Performance S3 Compatible Object Storage and 4 times cheaper than aws s3.
I’m not using any other server to upload files to backblaze. All the implementation is right there in the repo.
So I’m just using a combination of these libraries:
arc => GitHub - stavro/arc: 📎 Flexible file upload and attachment library for Elixir · GitHub
arc_ecto => GitHub - stavro/arc_ecto: An integration with Arc and Ecto. · GitHub
ex_aws => GitHub - ex-aws/ex_aws: A flexible, easy to use set of clients AWS APIs for Elixir · GitHub
ex_aws_s3 => GitHub - ex-aws/ex_aws_s3 · GitHub
Please note that in case of ex_aws and ex_aws_s3 I’m using forked versions that I made changes to support backblaze.
Here are forked ones that are being used right now.
https://github.com/factsfinder/ex_aws_s3
https://github.com/factsfinder/ex_aws
Pls check the lib => api => uploads => image.exs file to get a much better idea.
Let me know if you have any questions.
maz
Does ex_aws support backblaze now? Or should I use your fork still?
chrislaskey
It doesn’t appear so @maz, the
ex_awsandex_aws_s3libraries only have support for the official AWS regions.I ended up following the excellent work @factsfinder did in his original fork, just done to the latest
mainbranch of each of these repos. If it helps for your own reference, here’s the forks:I use them in a Phoenix application by updating
mix.exsto include:And in
config/runtime.exs:Where the value of
BACKBLAZE_B2_REGIONin my case is"us-west-001".And as a quick sanity check things are working, I use this command to from the REPL to verify a file download from the existing B2 bucket is working:
Note: at the time of writing, I only updated my forks to support
"us-west-001"and"us-west-002". If you need other Backblaze B2 regions, you’ll need to add them following the same pattern.maz
Looks like it is actually possible.
I got a presigned url from backblaze using above ex_aws_s3 config