{"id":41062584,"url":"https://github.com/zorn/flick","last_synced_at":"2026-01-22T12:18:45.944Z","repository":{"id":231212561,"uuid":"781205886","full_name":"zorn/flick","owner":"zorn","description":"Flick is a simple Elixir / Phoenix LiveView app that helps capture ranked votes.","archived":false,"fork":false,"pushed_at":"2025-09-11T18:22:28.000Z","size":3106,"stargazers_count":17,"open_issues_count":52,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-10T15:54:36.297Z","etag":null,"topics":["elixir","elixir-lang","phoenix-framework","phoenix-liveview","ranked-voting"],"latest_commit_sha":null,"homepage":"https://rankedvote.app","language":"Elixir","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/zorn.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-04-03T00:07:29.000Z","updated_at":"2025-09-11T18:22:31.000Z","dependencies_parsed_at":"2024-05-29T03:33:10.867Z","dependency_job_id":"fdb51282-78fa-4e93-9d06-fbfcad64aacf","html_url":"https://github.com/zorn/flick","commit_stats":null,"previous_names":["zorn/flick"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zorn/flick","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zorn%2Fflick","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zorn%2Fflick/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zorn%2Fflick/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zorn%2Fflick/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zorn","download_url":"https://codeload.github.com/zorn/flick/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zorn%2Fflick/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28662961,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-22T01:17:37.254Z","status":"online","status_checked_at":"2026-01-22T02:00:07.137Z","response_time":144,"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":["elixir","elixir-lang","phoenix-framework","phoenix-liveview","ranked-voting"],"created_at":"2026-01-22T12:18:45.223Z","updated_at":"2026-01-22T12:18:45.939Z","avatar_url":"https://github.com/zorn.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Flick\n\n![Still frame from the movie Election, the character Tracy Flick is holding up a cupcake with the lettering \"Pick Flick\" across the icing.](docs/pick-flick.png)\n\nFlick is a simple Elixir / Phoenix LiveView app that helps capture ranked votes. You can see this project in action at \u003chttps://rankedvote.app/\u003e.\n\nThis project was built to help the [Elixir Book Club](https://elixirbookclub.github.io/website/) pick books, but it is open to all.\n\n## Highlights\n\n- No accounts are needed to create ballots or cast votes.\n- Votes are ranked votes that help find a better overall consensus.\n- Individual voters can be weighted.\n- A ballot can be closed, stopping future votes from being cast.\n\n## Notable Future Enhancements\n\n- The project is very trusting and has no aggressive security against people voting more than once. Flick is intended for honest polling.\n- The ballot creation form asks users to enter comma-delimited options, and I'd like to revert this to dynamic inputs to allow more user-friendly entry of long option names.\n- See [Issues](https://github.com/zorn/flick/issues) for more.\n\n## Project Demo\n\nYouTube: \u003chttps://www.youtube.com/watch?v=pxE6AbaQuUM\u003e\n\n## Screenshots\n\n![Home page](docs/screenshots/home-page.png)\n\n![Create Ballot page](docs/screenshots/create-ballot-page.png)\n\n![Capture Vote page](docs/screenshots/capture-vote-page.png)\n\n![Ballot Admin page](docs/screenshots/admin-page.png)\n\n## Running in Local Development\n\n### Install Elixir via `asdf`\n\nThis project is built using Elixir and Erlang, and as such we define specific version targets using `.tool-versions` a file format of the [asdf project](https://asdf-vm.com/). Please refer to it for [various installation options](https://asdf-vm.com/guide/getting-started.html). Once installed, run the following from the project root to make sure you have the required versions.\n\n```bash\n$ asdf install\n```\n\n### Start Postgres\n\nThis project requires a Postgres database for storage and a Docker Compose file to run a containerized version is provided via `compose.yml`. You are not required to run Postgres via a container, and a standard on metal installation should work fine too.\n\nBefore attempting to run the Phoenix app, be sure to start the Docker container with:\n\n```bash\n$ docker compose up -d\n```\n\nTo shutdown you can run:\n\n```bash\n$ docker compose down -d\n```\n\n### Start Phoenix\n\nTo start your Phoenix server:\n\n  * Run `mix setup` to install and setup dependencies\n  * Start Phoenix endpoint with `mix phx.server` or inside IEx with `iex -S mix phx.server`\n\nNow you can visit [`localhost:4000`](http://localhost:4000) from your browser.\n\nReady to run in production? Please [check our deployment guides](https://hexdocs.pm/phoenix/deployment.html).\n\n## Learn more\n\n  * Official website: https://www.phoenixframework.org/\n  * Guides: https://hexdocs.pm/phoenix/overview.html\n  * Docs: https://hexdocs.pm/phoenix\n  * Forum: https://elixirforum.com/c/phoenix-forum\n  * Source: https://github.com/phoenixframework/phoenix\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzorn%2Fflick","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzorn%2Fflick","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzorn%2Fflick/lists"}