{"id":18374028,"url":"https://github.com/enigmacurry/phoenix-quickstart","last_synced_at":"2026-04-26T23:31:02.716Z","repository":{"id":66637935,"uuid":"445394689","full_name":"EnigmaCurry/phoenix-quickstart","owner":"EnigmaCurry","description":"A containerized development environment for Elixir and the Phoenix Framework","archived":false,"fork":false,"pushed_at":"2022-01-09T08:11:18.000Z","size":19,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-11T03:02:24.597Z","etag":null,"topics":["docker","elixir","phoenix-framework","podman"],"latest_commit_sha":null,"homepage":"","language":"Makefile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"cc0-1.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/EnigmaCurry.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","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,"zenodo":null}},"created_at":"2022-01-07T04:14:22.000Z","updated_at":"2022-01-09T08:11:21.000Z","dependencies_parsed_at":null,"dependency_job_id":"929a9d10-e58d-4f57-ae7c-7b3472a8481a","html_url":"https://github.com/EnigmaCurry/phoenix-quickstart","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/EnigmaCurry/phoenix-quickstart","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EnigmaCurry%2Fphoenix-quickstart","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EnigmaCurry%2Fphoenix-quickstart/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EnigmaCurry%2Fphoenix-quickstart/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EnigmaCurry%2Fphoenix-quickstart/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EnigmaCurry","download_url":"https://codeload.github.com/EnigmaCurry/phoenix-quickstart/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EnigmaCurry%2Fphoenix-quickstart/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32317162,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T23:26:28.701Z","status":"ssl_error","status_checked_at":"2026-04-26T23:26:25.802Z","response_time":129,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["docker","elixir","phoenix-framework","podman"],"created_at":"2024-11-06T00:13:08.409Z","updated_at":"2026-04-26T23:31:02.705Z","avatar_url":"https://github.com/EnigmaCurry.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# phoenix-quickstart\n\nThis Makefile and Dockerfile creates a containerized development environment for\n[Elixir](https://elixir-lang.org/) and the [Phoenix\nFramework](https://www.phoenixframework.org/).\n\n## Setup\n\n * You will need a Linux development environment.\n * Install GNU Make. (On Arch Linux, install: `base-devel`. On Debian/Ubuntu,\n   install: `build-essential`.)\n * Install [Podman](https://wiki.archlinux.org/title/Podman) or\n[Docker](https://wiki.archlinux.org/title/Docker) on your local workstation (you\ncan use a remote server if you prefer, but then all the files need to reside on\nthe server filesystem, and be edited remotely).\n * For proper DNS name resolution between podman containers, you will also need\n   to install\n   [podman-dnsname](https://archlinux.org/packages/community/x86_64/podman-dnsname/)\n\nConfigure your own user account so you can run containers successfully (For\npodman, see the [Rootless Podman article on the Arch Linux\nWiki](https://wiki.archlinux.org/title/Podman#Rootless_Podman). For Docker, make\nsure you add your user to the `docker` group):\n\n```\n# Make sure your normal user can run this successfully before proceeding:\n# Remember, you can use docker or podman, its up to you. \npodman run hello-world\n```\n\n## Install\n\nCreate a new directory someplace for your new project. Download `Makefile` and\n`Dockerfile` from this repository, and copy them into your new project\ndirectory:\n\n```\ncurl -L https://raw.githubusercontent.com/EnigmaCurry/phoenix-quickstart/master/Dockerfile -o Dockerfile\ncurl -L https://raw.githubusercontent.com/EnigmaCurry/phoenix-quickstart/master/Makefile -o Makefile\n```\n\nEdit your copy of the `Makefile`. At the top, you will find the variables that\nmake the default configuration. Change these variables appropriately for your\nnew project, or leave them as-is and use environment variables to override them\ninstead.\n\n * Podman is the default docker implementation. If you are using real Docker,\n   make sure to set `DOCKER = docker`.\n \n### Using the Makefile\n\nThe Makefile can perform all the steps to create and run the development\nenvironment. \n\nBuild and start everything, from scratch: `make all` \n \nOr, run the individual steps in this order:\n\n * Create the initial Phoenix project: `make init`\n * Build the docker container image: `make build`\n * Create the database: `make database`\n * Start the live reload server: `make serve` (press `Ctrl-C` twice to stop)\n\nOpen your web browser to [http://localhost:4000](http://localhost:4000)\n\n(`make init` is idempotent, you can run it many times, and it will only create\nthe project directory if it does not already exist: eg. `test -d ${APP} ||\n${DOCKER} run ...` from the `init` target.)\n\n\n# Public Domain License\n\nThis quickstart template is released to the public domain (CC0-1.0). Use it\nhowever you wish. See [LICENSE.txt](LICENSE.txt)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fenigmacurry%2Fphoenix-quickstart","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fenigmacurry%2Fphoenix-quickstart","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fenigmacurry%2Fphoenix-quickstart/lists"}