GitHub Readme.md
This buildpack is meant to be used with the Heroku Buildpack for Elixir. When deploying Phoenix apps to Heroku, static assets will need to be compiled. This buildpack sees to it that static assets are compiled and that a corresponding asset manifest is generated.
phoenix_static_buildpack.config
fileDATABASE_URL
and includes heroku-postgresql:hobby-dev
addonmix phoenix.server
will be runbower.json
is in your app's root path# Set the buildpack for your Heroku app
heroku buildpacks:set https://github.com/gjaldon/phoenix-static-buildpack
# Add this buildpack after the Elixir buildpack
heroku buildpacks:add --index 1 https://github.com/HashNuke/heroku-buildpack-elixir
Create a phoenix_static_buildpack.config
file in your app's root dir if you want to override the defaults. The file's syntax is bash.
If you don't specify a config option, then the default option from the buildpack's phoenix_static_buildpack.config
file will be used.
Here's a full config file with all available options:
# We can set the version of Node to use for the app here
node_version=0.12.4
# We can set the version of NPM to use for the app here
npm_version=2.10.1
# Add the config vars you want to be exported here
config_vars_to_export=(DATABASE_URL)
Copy the snippet above into CLI.