{"id":25228305,"url":"https://github.com/stensel8/easy-devops","last_synced_at":"2025-10-29T15:38:53.033Z","repository":{"id":276945010,"uuid":"916306896","full_name":"Stensel8/easy-devops","owner":"Stensel8","description":"Simple concept application for technical management and system monitoring. Built for/during my study to explore and demonstrate DevOps concepts. Open to contributions and feedback!","archived":false,"fork":false,"pushed_at":"2025-02-23T01:12:01.000Z","size":238,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-23T02:19:47.768Z","etag":null,"topics":["concept","csharp","devops","dotnet","powershell","python"],"latest_commit_sha":null,"homepage":"","language":"PowerShell","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/Stensel8.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}},"created_at":"2025-01-13T21:01:52.000Z","updated_at":"2025-02-23T01:10:37.000Z","dependencies_parsed_at":null,"dependency_job_id":"83a87189-7d0e-4739-b156-4a024b14ba1f","html_url":"https://github.com/Stensel8/easy-devops","commit_stats":null,"previous_names":["stensel8/easy-devops"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Stensel8%2Feasy-devops","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Stensel8%2Feasy-devops/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Stensel8%2Feasy-devops/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Stensel8%2Feasy-devops/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Stensel8","download_url":"https://codeload.github.com/Stensel8/easy-devops/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247345703,"owners_count":20924098,"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","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":["concept","csharp","devops","dotnet","powershell","python"],"created_at":"2025-02-11T09:57:23.469Z","updated_at":"2025-10-29T15:38:52.956Z","avatar_url":"https://github.com/Stensel8.png","language":"PowerShell","readme":"# Easy-DevOps App\n\nA simple concept application for technical management and system monitoring. Built during my studies to explore and demonstrate DevOps concepts and Jenkins basics. This is a school/test project and should not be taken seriously. Contributions and feedback are welcome!\n\n\u003e **Note**: This application is not intended for production use. It serves as a demonstration and learning tool for DevOps practices and Jenkins pipeline basics.\n\n---\n\n## Features\n\n- **Welcome Print**: Displays a welcome message (like \"Hello, World!\").\n- **Live Clock**: Shows the current time, updated every 5 seconds.\n- **Response Times**: Provides real-time ping response times for domains such as:\n  - Google\n  - GitHub\n  - Microsoft\n- **DevOps \u0026 Jenkins Basics**: Helps beginners learn CI/CD and understand Jenkins pipelines.\n- **Educational Focus**: Ideal for introducing DevOps concepts to students.\n\n---\n\n## Getting Started\n\n### Prerequisites\n\n- **.NET SDK**: [Download .NET SDK](https://dotnet.microsoft.com/download) (version 8.0 or later is recommended).\n- **Git**: Ensure Git is installed on your system. [Download Git](https://git-scm.com) if needed.\n- **Jenkins (optional)**: For exploring CI/CD basics. [Learn more about Jenkins](https://www.jenkins.io/).\n\n### Auto Installation\n\nFor automatic deployment, run the pre-defined PowerShell file:\n\n    .\\scripts\\install.ps1\n\n### Manual Installation\n\n1. Clone the repository:\n\n       git clone https://github.com/stensel8/easy-devops.git\n\n2. Navigate to the project directory:\n\n       cd easy-devops/frontend\n\n3. Build the application:\n\n       dotnet build\n\n4. Run the application:\n\n       dotnet run\n\n---\n\n## Docker/Kubernetes Containerization (New/Beta)\n\nThis app can be built and packaged as a container for use with Docker and Kubernetes.\n\n### Running the Predefined Image\n\n    docker run stensel8/easy-devops:latest\n    \n\u003e **Note**: Running without the `-it` flag may result in no color output. For colored output, use:\n\n    docker run -it stensel8/easy-devops:latest\n\n### Building and Running Locally via Scripts\n\n1. Navigate to the scripts folder:\n\n       cd scripts\n\n2. Choose an action:\n   - Build the application:\n\n         python devops.py build\n   \n   - Build the application (EXE for Windows):\n\n         python devops.py build-exe\n\n   - Create the Docker image:\n\n         python devops.py dockerize\n\n   - Run the container:\n\n         python devops.py run\n\n   - Run all steps (build, dockerize, and run):\n\n         python devops.py all\n\n### Deploying to Kubernetes (Optional)\n\nRefer to the **kubernetes/** folder for deployment configurations (e.g., `deployment.yaml`) to deploy the app on a Kubernetes cluster.\n\n---\n\n## Why Does the App Lose Color in Docker?\n\n![Colored Run](docs/img/colored-run.png)\n![Non-Colored Run](docs/img/non-colored-run.png)\n\nBy default, Docker does not allocate an interactive terminal unless you specify the `-it` flags.\n\n- When you run the container with:\n\n      docker run stensel8/easy-devops:latest\n\n  Docker does not create a pseudo-TTY, so color codes may not be displayed.\n\n- To see the colored ASCII art and text, run:\n\n      docker run -it stensel8/easy-devops:latest\n\n  The `-it` flag allocates a pseudo-TTY and keeps stdin open, enabling ANSI color codes.\n\nLocally, running the app with:\n\n      dotnet run\n\nalways shows color, as your terminal supports ANSI color by default.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstensel8%2Feasy-devops","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstensel8%2Feasy-devops","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstensel8%2Feasy-devops/lists"}