Crowdhailer
Creator of Raxx
raxx_kit is a generator for web-applications, using Ace and Raxx.
At the moment instructions for using raxx_kit include pulling the archive from github.
$ mix archive.install https://github.com/CrowdHailer/raxx_kit/raw/master/raxx_kit.ez
This works perfectly well but it has a few, minor, downsides such as a long url and the fact the project is not discoverable on hex.pm.
I was wondering if there was anyway to pull an archive from hex. It seams like it should be easy enough to implement.
For example mix.exs could specify the path to an archive within the project.
defmodule RaxxKit.MixProject do
use Mix.Project
def project do
[
app: :raxx_kit,
archive: "./raxx_kit.ez"
# etc
]
end
end
And then mix archive.install raxx_kit could just look for the project on hex.
Thoughts, is this possible some other way or is there a good reason this would be a bad idea?
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
Hi everyone,
I am toying with the idea of building a “match maker” for giving personal help to people that wants to start coding.
I sta...
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
Documentation
While reading the Scoped Routes section, I noticed that the documentation currently refers to a problem without explainin...
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
I recently noticed that Elixir’s Logger defaults its primary log level to :debug when no :logger, :level application configuration is pre...
New
I’m new to elixir and just tried to install the elixirLS extension for VScode(ium) and it is throwing some errors that I would like help ...
New
Other Trending Topics
Edit: 2026 May 15 - This post is archived.
Mob is alive!!
Main docs: mob v0.7.11 — Documentation
A bit of explanation for the slightly c...
New
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
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
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
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
- #ai
- #elixirconf-us
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #elixirconf-eu
- #metaprogramming
- #hex











Showing Posts 1 to 8- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
NobbZ
According to
mix help archive.installyou can domix archive.install hex $package $versionwhere version is optional.Crowdhailer
Interesting. I was looking at the docs here mix archive.install — Mix v1.20.2
I probably looked too much at the code examples. I now see it says
To me this suggests I should add a url to a hex package.
Edit
Sorry I see it now.
Crowdhailer
Ok. but I do have an issue. running the following will build the archive locally, correct?
I need to build my archive with the
--include-dot-filesoption. Is it possible for me to use the command above but have my project specify that the archive should be build with the option for dotfiles.NobbZ
I can’t answer that, as I’ve not currently used an
archive.install hex,phx_newandhexare the only archives I’ve installed.hexinstalls semi-automatically once needed andphx_newpropagates installation via URL.I just read from the documentation of the task.
But I do assume, that the
hexarchive is involved in the hex-install, so lets try to ask @ericmj.ericmj
I think
archive.installshould take the same options thatarchive.builddoes or possibly that it should be possible to configure--include-dot-filesin the project config so that the flag is not needed.Crowdhailer
Are you saying it should already or that it should be changed to address this?
NobbZ
In my opinion when I pull an archive from hex I do not want to remember to add any options or switches. I just want it to work out of the box, as it were when I use an URL to a prebuilt archive.
That’s the user point of view.
ericmj
I think it should be changed to address this.
Definitely. If you could configure
--include-dot-filesin the project config it would work out of the box.