{"id":18863893,"url":"https://github.com/jwarwick/student_list","last_synced_at":"2026-02-04T21:35:28.193Z","repository":{"id":66704250,"uuid":"379626290","full_name":"jwarwick/student_list","owner":"jwarwick","description":"School directory CRM","archived":false,"fork":false,"pushed_at":"2024-08-19T15:53:42.000Z","size":669,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-20T03:20:35.452Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/jwarwick.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}},"created_at":"2021-06-23T14:14:30.000Z","updated_at":"2024-08-19T15:53:45.000Z","dependencies_parsed_at":"2024-11-08T04:49:55.967Z","dependency_job_id":null,"html_url":"https://github.com/jwarwick/student_list","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jwarwick/student_list","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwarwick%2Fstudent_list","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwarwick%2Fstudent_list/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwarwick%2Fstudent_list/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwarwick%2Fstudent_list/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jwarwick","download_url":"https://codeload.github.com/jwarwick/student_list/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jwarwick%2Fstudent_list/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29096412,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-04T21:05:08.033Z","status":"ssl_error","status_checked_at":"2026-02-04T21:04:53.031Z","response_time":62,"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":[],"created_at":"2024-11-08T04:39:00.603Z","updated_at":"2026-02-04T21:35:28.173Z","avatar_url":"https://github.com/jwarwick.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"# StudentList\n\nWeb application to create student directories.\n\n## Local Dev Installation\n\n```\n% mix ecto.create\n% mix ecto.migrate\n% mix phx.server\n```\n\n## Environment Variables\nNeeded for Production builds\n`DATABASE_URL`, `SECRET_KEY_BASE`, `MAILGUN_API_KEY`, `MAILGUN_DOMAIN`, `HOST`\n\n## Gigalixir Deployment\nThis project was built to run on [Gigalixir](https://www.gigalixir.com/). The [Getting Started Guide](https://gigalixir.readthedocs.io/en/latest/getting-started-guide.html) is a good starting point for account creation, etc.\n\nTo deploy there, follow these steps:\n```\n% gigalixir create\n% gigalixir pg:create --free     # should create a production db for a real project\n% gigalixir config:set HOST=\"my-directory.org\"\n% gigalixir config:set MAILGUN_DOMAIN=\"my-directory.org\"\n% gigalixir config:set MAILGUN_API_KEY=\"XXXXXXXXXXXXXXXXXX\"\n% git push gigalixir\n% gigalixir run mix ecto.create\n% gigalixir run mix ecto.migrate\n# Gigalixir provides the DATABASE_URL and SECRET_KEY_BASE environment variables by default\n\n% gigalixir domains:add my-directory.org\n% gigalixir domains:add www.my-directory.org\n```\n\nTo see the status of your app:\n```\n% gigalixir ps\n{\n  \"cloud\": \"gcp\",\n  \"pods\": [\n    {\n      \"lastState\": {},\n      \"name\": \"navy-XXXXXXXX-borer-XXXXXXXXXX-XXXXXX\",\n      \"sha\": \"XXXXXXXXXXXX\",\n      \"status\": \"Healthy\",\n      \"version\": \"11\"\n    }\n  ],\n  \"region\": \"v2018-us-central1\",\n  \"replicas_desired\": 1,\n  \"replicas_running\": 1,\n  \"size\": 0.3,\n  \"stack\": \"gigalixir-20\",\n  \"unique_name\": \"navy-XXXXXXXX-borer\"\n}\n```\n\nTo see system logs:\n```\n% gigalixir logs\n```\n\n## Site Account Creation\n\nWhen the server is started, if no users are present in the database, the `Registration` page will be available at `/users/register`. This account will be an admin account and can finish the server setup.\n\nAt setup time, under `Site Configuration`, create a `support_email` key to be displayed in the main page header. Set a value that is forwarded by your email service provider.\n\n## Testing\nSeveral tools are part of the `dev` build which validate the code:\n```\n% mix test\n% mix credo\n% mix sobelow\n% mix dialyzer\n```\n\n## Issues\nRan into a few problems during initial project creation:\n  - There is a bug with `node_sass`, needed to install `phoenix` from the main repo: \u003chttps://github.com/phoenixframework/phoenix/tree/master/installer\u003e.\n  - `mix ecto.migrate` did not work after running ` mix phx.gen.auth Accounts User users`. The create extension citext was failing because the user did not have `SUPERUSER` permissions.  To fix, manually connect to the db as a superuser and create the extension:\n```\n% psql -U jwarwick student_list_dev\nstudent_list_dev=# CREATE EXTENSION citext;\n```\n\n## LICENSE\n\nSoftware released under the [MIT License](LICENSE.txt).\n\nMoose favicon from \u003chttps://openclipart.org/detail/169960/cartoon-moose-by-studiofibonacci\u003e, released under [Creative Commons Zero 1.0 Public Domain License](https://creativecommons.org/publicdomain/zero/1.0/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjwarwick%2Fstudent_list","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjwarwick%2Fstudent_list","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjwarwick%2Fstudent_list/lists"}