{"id":36985492,"url":"https://github.com/usr-wwelsh/railway-android","last_synced_at":"2026-01-13T23:02:11.777Z","repository":{"id":329172652,"uuid":"1117058277","full_name":"usr-wwelsh/railway-android","owner":"usr-wwelsh","description":"unofficial railway android app","archived":false,"fork":false,"pushed_at":"2025-12-17T19:08:45.000Z","size":111,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-21T07:27:13.492Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Kotlin","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/usr-wwelsh.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":"2025-12-15T19:13:10.000Z","updated_at":"2025-12-17T19:07:00.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/usr-wwelsh/railway-android","commit_stats":null,"previous_names":["usr-wwelsh/railway-android"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/usr-wwelsh/railway-android","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/usr-wwelsh%2Frailway-android","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/usr-wwelsh%2Frailway-android/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/usr-wwelsh%2Frailway-android/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/usr-wwelsh%2Frailway-android/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/usr-wwelsh","download_url":"https://codeload.github.com/usr-wwelsh/railway-android/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/usr-wwelsh%2Frailway-android/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28399572,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T14:36:09.778Z","status":"ssl_error","status_checked_at":"2026-01-13T14:35:19.697Z","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":[],"created_at":"2026-01-13T23:02:11.648Z","updated_at":"2026-01-13T23:02:11.770Z","avatar_url":"https://github.com/usr-wwelsh.png","language":"Kotlin","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Railway Android\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![Platform](https://img.shields.io/badge/platform-Android-green.svg)](https://www.android.com)\n[![Language](https://img.shields.io/badge/language-Kotlin-purple.svg)](https://kotlinlang.org)\n[![API](https://img.shields.io/badge/API-26%2B-brightgreen.svg)](https://android-arsenal.com/api?level=26)\n\nA lightweight, native Android app for monitoring Railway projects on-the-go. Built with Kotlin + Jetpack Compose for optimal performance and minimal bloat.\n\n## Features\n\n- 🔐 **Privacy-First**: API tokens stored with AES256-GCM encryption\n- 📱 **Native Android**: No bloat, just fast Kotlin + Jetpack Compose\n- 🌙 **Railway Design**: Dark-first UI matching Railway's aesthetic\n- 📊 **Project Monitoring**: View all projects with deployment status\n- 📝 **Live Logs**: View deployment logs and live server logs\n- 💾 **Offline Ready**: Caches data for viewing without connection\n\n## Getting Started\n\n### Prerequisites\n\n- Android Studio Hedgehog or later\n- Android SDK 26+ (Android 8.0+)\n- JDK 17\n\n### Building\n\n1. Clone this repository:\n   ```bash\n   git clone https://github.com/usr-wwelsh/railway-android.git\n   cd railway-android\n   ```\n\n2. Open in Android Studio\n\n3. Build and run:\n   ```bash\n   ./gradlew assembleDebug\n   ```\n\n### Getting a Railway API Token\n\n1. Visit [railway.app/account/tokens](https://railway.app/account/tokens)\n2. Create a new Personal or Project token\n3. Copy the token\n4. Enter it in the app on first launch\n\n**💡 Tip**: For maximum security, use a read-only Project token!\n\n## Tech Stack\n\n- **Language**: Kotlin\n- **UI**: Jetpack Compose + Material3\n- **Architecture**: MVVM + Clean Architecture\n- **DI**: Hilt\n- **GraphQL**: Apollo Kotlin\n- **Storage**: EncryptedSharedPreferences + Room Database\n- **Navigation**: Compose Navigation\n\n## Project Structure\n\n```\napp/src/main/kotlin/com/railway/mobile/\n├── data/               # Data layer\n│   ├── local/         # EncryptedSharedPreferences, Room database\n│   └── repository/    # Repository implementations\n├── domain/            # Business logic\n│   ├── model/         # Domain models\n│   └── repository/    # Repository interfaces\n├── presentation/      # UI layer\n│   ├── theme/         # Material3 theme\n│   ├── onboarding/    # Token setup\n│   ├── projects/      # Projects list\n│   ├── projectdetails/ # Project details \u0026 deployments\n│   ├── logs/          # Deployment logs\n│   ├── environmentlogs/ # Live server logs\n│   └── navigation/    # App navigation\n└── di/                # Dependency injection\n```\n\n## Contributing\n\nThis is an open-source community project! Contributions welcome.\n\n1. Fork the repo\n2. Create a feature branch\n3. Make your changes\n4. Submit a PR\n\n## License\n\nMIT License - see [LICENSE](LICENSE) for details\n\n## Disclaimer\n\nThis is an unofficial community project, not affiliated with Railway Corp.\n\n---\n\nBuilt with ❤️ for indie devs who ship from anywhere 🚂\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fusr-wwelsh%2Frailway-android","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fusr-wwelsh%2Frailway-android","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fusr-wwelsh%2Frailway-android/lists"}