tenzil
Hi folks, i am planning on deploying my app in aws. I have deployed Rails app in EC2. But its my first time for elixir, phoenix. So please guide me here, without docker.
App is a simple, now. it may grow bigger after a month or 2. and there will be a chat functionality (one to one). I have already deployed my app in heroku and gigalixir using distillery. wanted to do the same in aws
Please guide me here
Trending in Questions
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hello,
I know there is an approach for handling lists that allows for optimized traversal, but I can’t recall the specific method (somet...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
apply_graft/2 doesn’t rewrite an add_many sub-workflow’s deps on an add step. Grafted jobs cancel with “upstream job was deleted”
Version...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
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
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
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
- #hex
- #security
- #metaprogramming










Showing Posts 1 to 9- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
tenzil
Found edeliver, reading Deploying Elixir applications with Edeliver « Plataformatec Blog
will update soon how it goes. please do post your suggestions
elcritch
That article is pretty out of date at this point. Elixir 1.9+ has releases built into mix. There’s other threads here on the topic, but you could start with the Phoenix docs on releases at Deploying with Releases — Phoenix v1.8.8 as a good reference point.
And welcome to Phoenix! It’s a fun framework.
tenzil
thanks @elcritch, i appreciate it. i do knew little bit about releases, when i read about heroku/gigalixir deployment docs and i went with distillery.
Googling few blogs for aws deployemnt, found out this one,
please do post, blogs on phoenix deployment to AWS.
gcauchon
This got me curious! What aspect of your design discard Docker from the equation?
I’ve deployed many Elixir web applications to cloud providers with (then) Distillery and (now)
mix releaseand it is, imho so much simpler for 95% of the use cases…kreiling.io
I only deploy with Elixir releases nowadays. I have to say you shouldn’t shy away from Docker, necessarily!
If you’re trying to deploy to a VPS (such as EC2), I actually do the following:
rsyncit to the server.For secrets, I have a
prod.envfile on the host that is loaded using bash’ssourcecommand, and those env vars are loaded byrel/releases.exson-boot.tenzil
Hi folks, sorry for the late update. I went with releases. I haven’t spent much time exploring docker, well its in the pipeline, and next stop would be deploying with docker.
thank you folks
onkara
@kreiling.io are you injecting secrets? are you generating
prod.envon the fly in your CI/CD (or any release method) is there a different process responsibly for copying theprod.env?onkara
@tenzil since you are deploying to AWS EC2 would you mind sharing the OS image being used?
kreiling.io
I keep a folder full of secret files on my dev laptop synchronized with all of my hosts through
rsync, and that is how I distribute secrets to my hosts. This way I can share common secrets across my hosts in the same file(s)However I’d be wary of doing this in the event that you need to collaborate and synchronize secrets across more than 5-10 developers - then you might want to look into something remote & secure, such as AWS Secrets Manager or AWS Parameter Store.