{"id":22268150,"url":"https://github.com/curityio/mobile-deployments","last_synced_at":"2026-04-28T22:34:45.264Z","repository":{"id":40299057,"uuid":"423433077","full_name":"curityio/mobile-deployments","owner":"curityio","description":"Resources for automating the setup of Curity mobile code examples","archived":false,"fork":false,"pushed_at":"2025-06-20T09:01:40.000Z","size":153,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"main","last_synced_at":"2026-01-14T05:59:41.865Z","etag":null,"topics":["deployment","docker","mobile","oauth2","openid-connect"],"latest_commit_sha":null,"homepage":"https://curity.io/resources/writing-mobileapps/","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/curityio.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}},"created_at":"2021-11-01T11:03:26.000Z","updated_at":"2025-06-20T09:01:40.000Z","dependencies_parsed_at":"2023-12-06T14:30:31.429Z","dependency_job_id":"776eb6f3-418b-4529-ac78-bde9f2b7bb0e","html_url":"https://github.com/curityio/mobile-deployments","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/curityio/mobile-deployments","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/curityio%2Fmobile-deployments","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/curityio%2Fmobile-deployments/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/curityio%2Fmobile-deployments/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/curityio%2Fmobile-deployments/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/curityio","download_url":"https://codeload.github.com/curityio/mobile-deployments/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/curityio%2Fmobile-deployments/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32402670,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-28T19:38:08.556Z","status":"ssl_error","status_checked_at":"2026-04-28T19:37:55.688Z","response_time":56,"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":["deployment","docker","mobile","oauth2","openid-connect"],"created_at":"2024-12-03T11:11:42.084Z","updated_at":"2026-04-28T22:34:45.256Z","avatar_url":"https://github.com/curityio.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Mobile Deployments\n\nAutomated deployments of the Curity Identity Server to provide initial infrastructure for mobile testing.\\\nThis repository provides a consistent developer experience for anyone who wants to run mobile examples.\n\n## Example Applications\n\nThe following example applications can use this repository:\n\n- [Android Kotlin AppAuth Code Example](https://curity.io/resources/learn/kotlin-android-appauth/)\n- [iOS Swift AppAuth Code Example](https://curity.io/resources/learn/swift-ios-appauth/)\n- [Advanced AppAuth code example using Dynamic Client Registration](https://curity.io/resources/learn/authenticated-dcr-example/)\n- [Android Kotlin HAAPI UI SDK Code Example](https://curity.io/resources/learn/kotlin-android-haapi/)\n- [iOS Swift HAAPI UI SDK Code Example](https://curity.io/resources/learn/swift-ios-haapi/)\n- [React Native HAAPI Code Example](https://curity.io/resources/learn/react-native-haapi/)\n- [Android Kotlin HAAPI Model SDK Code Example](https://github.com/curityio/android-haapi-demo-app)\n- [iOS Swaift HAAPI Model SDK Code Example](https://github.com/curityio/ios-haapi-demo-app)\n\n## Deployment Interface\n\nEach mobile example calls the following script with parameters to start and stop the Curity Identity Server:\n\n```bash\n./start.sh\n./stop.sh\n```\n\n## Configuration\n\nThe files in the `resources` folder provide the base configuration.\\\nEach code example can apply additional configuration based on its requirements:\n\n- Examples can use default configuration files stored in this project, e.g. in the `appauth` folder.\n- Examples can override configuration by copying in their own configuration files, e.g to the `haapi` folder.\n\n## Administration and Users\n\nAfter deploying the Curity Identity Server, sign in to the Admin UI using the following details:\n\n- URL: `https://localhost:6749/admin`\n- User: `admin`\n- Password: `Password1`\n\nIf you use ngrok and you have a suitable license file you can also sign into the DevOps Dashboard and create test user accounts:\n\n- URL: `https://localhost:6749/admin/dashboard`\n- User: `admin`\n\nYou may also need to trust the `localhost` certificate at `resources/ssl-cert.pem` for the dashboard to successfully make fetch requests. For example, on macOS:\n\n- Import the certificate into Keychain Access under `System / Certificates`.\n- The configure `Always Trust` for the `curityserver` certificate.\n\n## User Data\n\nYou can query user data like accounts and passkeys by connecting to the PostgreSQL database:\n\n```bash\nPOSTGRES_CONTAINER=$(docker ps | grep postgres | awk '{print $1}')\ndocker exec -it $POSTGRES_CONTAINER bash\n```\n\nThen connect to the database:\n\n```bash\nexport PGPASSWORD=Password1 \u0026\u0026 psql -p 5432 -d idsvr -U postgres\n```\n\nThen query data like user account details or registered passkey public keys:\n\n```text\nselect * from accounts;\nselect * from devices;\n```\n\n## More Information\n\nPlease visit [curity.io](https://curity.io/) for more information about the Curity Identity Server.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcurityio%2Fmobile-deployments","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcurityio%2Fmobile-deployments","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcurityio%2Fmobile-deployments/lists"}