{"id":29342908,"url":"https://github.com/devmando/starship","last_synced_at":"2026-02-13T15:04:00.061Z","repository":{"id":302515442,"uuid":"1009265693","full_name":"DevMando/Starship","owner":"DevMando","description":"A Star Wars API Coding Exercise","archived":false,"fork":false,"pushed_at":"2025-07-02T19:30:46.000Z","size":36844,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"development","last_synced_at":"2025-07-02T20:33:12.583Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/DevMando.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2025-06-26T21:09:27.000Z","updated_at":"2025-07-02T19:29:23.000Z","dependencies_parsed_at":"2025-07-02T20:44:35.819Z","dependency_job_id":null,"html_url":"https://github.com/DevMando/Starship","commit_stats":null,"previous_names":["devmando/starship"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/DevMando/Starship","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevMando%2FStarship","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevMando%2FStarship/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevMando%2FStarship/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevMando%2FStarship/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DevMando","download_url":"https://codeload.github.com/DevMando/Starship/tar.gz/refs/heads/development","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DevMando%2FStarship/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272878320,"owners_count":25008336,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-30T02:00:09.474Z","response_time":77,"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":[],"created_at":"2025-07-08T11:10:19.168Z","updated_at":"2026-02-13T15:03:55.013Z","avatar_url":"https://github.com/DevMando.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🚀 Starship Management App\n\nA full-stack web application built with **.NET 8**, **Blazor Server**, **Entity Framework Core**, and **SQL Server** that consumes the [SWAPI](https://swapi.info/starships) to manage a list of Star Wars starships. \n\nThis project includes:\n- Authentication via Google OAuth\n- CRUD functionality for Starships\n- Responsive and animated UI using **Radzen** and **MudBlazor**\n- Docker support using **Docker Compose** and **SQL Server in a container**\n- Secrets and config values loaded from a `.env` file\n\nI had a lot of fun styling this project! Future features may include:\n- Relational data linking Pilots and Films to Starships\n- Application-wide logging\n- Audit history of starship changes (who changed what and when)\n\n---\n\n## 🚧 Features\n\n- **Google OAuth Authentication**  \n  Users must log in using a Google account to access the app.\n\n- **Starship CRUD Functionality**  \n  Create, edit, update, and delete starships. All forms are validated and styled.\n\n- **Docker Compose Setup**  \n  Fully containerized app and SQL Server using `docker-compose`. No manual SQL installation required.\n\n- **Environment-Based Secrets**  \n  All sensitive credentials and connection strings are configured via `.env` to support secure and flexible deployments.\n\n- **Responsive UI with Animations**  \n  A modern, sci-fi-inspired user interface using Radzen Panels and MudBlazor animations.\n\n---\n\n## 🔧 Getting Started\n\n### 1. Clone the Repository\n\n```bash\ngit clone https://github.com/DevMando/Starship.git\ncd StarshipWebApp\n```\n\n### 2. Setup Environment Variables\n\nCreate a `.env` file at the root of the `StarshipWebApp` project based on `.env.example`.\n\n```env\n# === Database (uses Docker SQL Server container) ===\nConnectionStrings__DefaultConnection=Server=sqlserver;Database=StarshipDb;User Id=sa;Password=YourStrong!Passw0rd;TrustServerCertificate=True;\n\n# === Google OAuth ===\nAuthentication__Google__ClientId=your-google-client-id.apps.googleusercontent.com\nAuthentication__Google__ClientSecret=your-google-client-secret\n```\n\n\u003e ⚠️ Do NOT check in your `.env` file to source control.\n\n### 3. Run with Docker Compose (Recommended)\n\n```bash\ndocker-compose up --build\n```\n\nThen navigate to [http://localhost:8080](http://localhost:8080)\n\nThis will:\n- Start SQL Server in a container\n- Build and launch the Blazor web app\n- Automatically apply EF Core migrations and seed the database\n\n---\n\n## 🔐 Google OAuth Setup\n\n1. Go to [Google Cloud Console](https://console.cloud.google.com/)\n2. Create a new project\n3. Navigate to **APIs \u0026 Services → Credentials**\n4. Create **OAuth Client ID** for a **Web Application**\n5. Add authorized redirect URI:  \n   `http://localhost:8080/signin-google` *(or your deployed URL)*\n6. Copy your **Client ID** and **Client Secret** into the `.env` file\n\n---\n\n## 🧪 Tech Stack\n\n- .NET 8\n- Blazor Server\n- EF Core\n- SQL Server (Docker containerized)\n- Radzen Blazor Components\n- MudBlazor\n- Docker \u0026 Docker Compose\n\n---\n\n## 📂 Project Structure\n\n- `StarshipWebApp/` — Main Blazor project\n- `.env.example` — Sample configuration\n- `docker-compose.yml` — Compose file for local development\n- `Program.cs` — Configuration \u0026 startup logic\n- `Data/` — EF Core DbContext and models\n\n---\n\n## 🎯 Future Enhancements\n\n- Pilot and Film relationships\n- Application logging\n- Starship edit history and change tracking\n- Deployment pipeline\n\n---\n\n## ✅ Status\n\nThis project is feature-complete for the coding challenge but open to future polish and enhancements.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevmando%2Fstarship","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdevmando%2Fstarship","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdevmando%2Fstarship/lists"}