{"id":18534420,"url":"https://github.com/nanobox-io/nanobox-engine-elixir","last_synced_at":"2025-10-07T09:53:49.037Z","repository":{"id":145148560,"uuid":"43841595","full_name":"nanobox-io/nanobox-engine-elixir","owner":"nanobox-io","description":"Engine for running Elixir apps on Nanobox","archived":false,"fork":false,"pushed_at":"2019-03-11T22:10:29.000Z","size":151,"stargazers_count":11,"open_issues_count":4,"forks_count":6,"subscribers_count":9,"default_branch":"master","last_synced_at":"2025-04-10T09:50:54.190Z","etag":null,"topics":["deployment","elixir","elixir-apps","elixir-engine","elixir-lang","elixir-runtime","nanobox"],"latest_commit_sha":null,"homepage":"https://nanobox.io","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nanobox-io.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-10-07T20:01:10.000Z","updated_at":"2023-10-29T06:17:46.000Z","dependencies_parsed_at":null,"dependency_job_id":"3c1d86e3-bbb4-4ce0-91fe-6c85f2645461","html_url":"https://github.com/nanobox-io/nanobox-engine-elixir","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/nanobox-io/nanobox-engine-elixir","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nanobox-io%2Fnanobox-engine-elixir","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nanobox-io%2Fnanobox-engine-elixir/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nanobox-io%2Fnanobox-engine-elixir/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nanobox-io%2Fnanobox-engine-elixir/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nanobox-io","download_url":"https://codeload.github.com/nanobox-io/nanobox-engine-elixir/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nanobox-io%2Fnanobox-engine-elixir/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278755164,"owners_count":26040034,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-07T02:00:06.786Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["deployment","elixir","elixir-apps","elixir-engine","elixir-lang","elixir-runtime","nanobox"],"created_at":"2024-11-06T19:15:44.101Z","updated_at":"2025-10-07T09:53:49.031Z","avatar_url":"https://github.com/nanobox-io.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Elixir\n\nThis is an Elixir engine used to launch Elixir apps on [Nanobox](http://nanobox.io).\n\n## Usage\nTo use the Elixir engine, specify `elixir` as your `engine` in your boxfile.yml.\n\n```yaml\nrun.config:\n  engine: elixir\n```\n\n## Build Process\nWhen preparing your runtime, this engine compiles code by doing the following:\n\n```\n\u003e mix local.hex --force\n\u003e mix local.rebar --force\n\u003e mix deps.get --force\n\u003e mix deps.compile --force\n\u003e mix compile --force\n```\n\n## Helper Scripts\nThis engine provides helper scripts to make managing your Elixir application easier.\n\n### node-attach\nThe `node-attach` helper facilitates connecting to an Elixir node that was started with `elixir-start`.\n\n```bash\nnode-attach\n```\n\n### node-start\nThe `node-start` helper ensures that nodes are started with credentials sufficient to cluster and attach to after they are running.\n\n```bash\n# Examples\nnode-start mix phoenix.server\nnode-start mix run —no-halt\n```\n\n## Configuration Options\nThis engine exposes configuration options through the [boxfile.yml](http://docs.nanobox.io/boxfile/), a yaml config file used to provision and configure your app's infrastructure when using Nanobox. This engine makes the following options available.\n\n#### Overview of Boxfile Configuration Options\n```yaml\nrun.config:\n  engine.config:\n    # Elixir Settings\n    runtime: elixir-1.5\n```\n\n---\n\n#### runtime\nSpecifies which Elixir runtime to use. The following runtimes are available:\n\n- elixir-1.5\n\n```yaml\nrun.config:\n  engine.config:\n    runtime: elixir-1.5\n```\n\n---\n\n#### erlang_runtime\nSpecifies which Erlang runtime to use. The following runtimes are available:\n\n- erlang-18\n- erlang-19\n- erlang-20\n\n```yaml\nrun.config:\n  engine.config:\n    erlang_runtime: erlang-20\n```\n\n---\n\n#### postgresql_client_version\nSpecifies what version of the PostgreSQL client to use:\n\nNOTE: The engine will try to detect the correct version first.\n\n- 9.3\n- 9.4\n- 9.5\n- 9.6\n- 10\n\n```yaml\nrun.config:\n  engine.config:\n    postgresql_client_version: 9.6\n```\n\n---\n\n## Help \u0026 Support\nThis is an Elixir engine provided by [Nanobox](http://nanobox.io). If you need help with this engine, you can reach out to us in the [Nanobox Slack channel](https://nanoboxio.slack.com) (access can be requested at [slack.nanoapp.io](http://slack.nanoapp.io)). If you are running into an issue with the engine, feel free to [create a new issue on this project](https://github.com/nanobox-io/nanobox-engine-elixir/issues/new).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnanobox-io%2Fnanobox-engine-elixir","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnanobox-io%2Fnanobox-engine-elixir","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnanobox-io%2Fnanobox-engine-elixir/lists"}