Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve asset management for development and releases #143

Open
crbelaus opened this issue Mar 28, 2025 · 0 comments
Open

Improve asset management for development and releases #143

crbelaus opened this issue Mar 28, 2025 · 0 comments
Labels
enhancement New feature or request

Comments

@crbelaus
Copy link
Contributor

At the moment we are including the compiled static assets in the repository inside the priv/static folder which should not be required. We do this because this files should be included when we publish a new release.

The downside is that when making changes we must remember to recompile the assets. Otherwise we risk including out of date assets when publishing a new release.

I took a look at how Oban Web does this and they have a mix release command that:

  1. Builds the assets
  2. Creates a new git tag and pushes it using the configured version
  3. Publish the new release to hex

This removes the need for keeping the compiled assets in the repository as they will be effectively compiled right before cutting the release, ensuring that they are always up to date.


Another thing that would be worth improving is how assets interact with the development server. At the moment we must run mix assets.watch in a separate terminal along the dev server to ensure that they are updated.

As it turns out the Phoenix Playground has a endpoint_options config that allows us to specify the watchers just like we do in a regular Phoenix project. If I understand this well, it would mean that the assets would automatically run along the dev server without us having to run them manually.

@crbelaus crbelaus added the enhancement New feature or request label Mar 28, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant