{"id":29622850,"url":"https://github.com/zyxdevs/container-pb54reu","last_synced_at":"2025-07-21T04:37:20.966Z","repository":{"id":210727359,"uuid":"727313642","full_name":"zYxDevs/container-pb54reu","owner":"zYxDevs","description":"Created using https://container-hosting.anotherwebservice.com/#start","archived":false,"fork":false,"pushed_at":"2023-12-04T16:05:18.000Z","size":20,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-18T14:55:16.403Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://container-pb54reu.containers.anotherwebservice.com/","language":"Shell","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/zYxDevs.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2023-12-04T16:04:19.000Z","updated_at":"2023-12-04T16:04:50.000Z","dependencies_parsed_at":"2023-12-04T17:29:33.677Z","dependency_job_id":"b1aa86f0-33d5-481f-871b-34af52aa758b","html_url":"https://github.com/zYxDevs/container-pb54reu","commit_stats":null,"previous_names":["zyxdevs/container-pb54reu"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/zYxDevs/container-pb54reu","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zYxDevs%2Fcontainer-pb54reu","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zYxDevs%2Fcontainer-pb54reu/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zYxDevs%2Fcontainer-pb54reu/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zYxDevs%2Fcontainer-pb54reu/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zYxDevs","download_url":"https://codeload.github.com/zYxDevs/container-pb54reu/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zYxDevs%2Fcontainer-pb54reu/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266241373,"owners_count":23898066,"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":[],"created_at":"2025-07-21T04:37:20.436Z","updated_at":"2025-07-21T04:37:20.948Z","avatar_url":"https://github.com/zYxDevs.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Go forth and build! 🚀\n\n## Tutorial: How to make your first commit 📹:\n\nThis video example shows how to:\n\n- Edit your container code\n- Raise a new pull request\n- Deploy the newest version automatically 🚀\n\nhttps://user-images.githubusercontent.com/1718624/216366290-9bcac918-8605-4cf5-a98a-75bb8f722966.mp4\n\n\n\nBy now, you have deployed a container, and in moments, you can visit your app\nlive!\n\n\u003e Be patient! In ~3 mins your app is live, at your [app url](https://container-pb54reu.containers.anotherwebservice.com/). It even has a free SSL/TLS certificate 🔒 you're welcome!\n\nYou probably want to add code to your app. Good news, your app is ready right now to start coding, which is simple:\n\n1. Edit your code\n2. Commit your code\n3. Push your code `git push origin main`\n\nYour app will be automatically re-deployed with the latest code at: https://container-pb54reu.containers.anotherwebservice.com/\n\n\u003e You app is deployed already and is working software. Gone are the days of spending weeks coding and then *another* week going to production. No. Go to production *early* and respond to change.\n\n# Getting Started 💻 (locally on your laptop)\n\n\u003e Step 0: You need to download your repo to your computer:\n\n```\ngit clone git@github.com:zYxDevs/container-pb54reu.git\ncd container-pb54reu\n```\n\n\u003e See an error? You might need to setup permissions [here's a guide how to setup repo clone permissions](https://docs.github.com/en/authentication/connecting-to-github-with-ssh/adding-a-new-ssh-key-to-your-github-account)\n\n1. [Install docker](https://docs.docker.com/get-docker/)\n\n2. Start your container locally: `docker-compose up`\n3. Visit your app locally: http://127.0.0.1:5000/\n\n## View your app locally\n\nVisit: http://127.0.0.1:5000/\n\n### Rebuild container (locally)\nIf you make changes to `Dockerfile`, then you need to rebuild your container image. To rebuild the container image:\n```\ndocker-compose build\n# or \ndocker-compose up --build\n```\n\n# Start coding! Which framework did you choose?\n\nNeed some help to get started?\n\n- [**Flask** quickstart guide](https://flask.palletsprojects.com/en/2.2.x/quickstart/) ⚗️ 🐍\n- [**Django** quide](https://docs.djangoproject.com/en/4.1/topics/http/views/) 📰\n- [**Ruby** quickstart guide](https://github.com/KarmaComputing/rails-quickstart) 💎\n\n# Debugging\n\nHow do I turn on the debugger?\n\nEnable a breakpoint by adding `breakpoint()` to your code, start your application and run to that point then in a terminal type:\n\n```\ndocker attach container-pb54reu\n```\nTa-da! You'll be inside the [Python debugger](https://docs.python.org/3/library/pdb.html#module-pdb) ( ⬅️ Read this!)\n\n\n\n## Questions\n\n- How was this built? [All code is here](https://github.com/KarmaComputing/container-hosting)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzyxdevs%2Fcontainer-pb54reu","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzyxdevs%2Fcontainer-pb54reu","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzyxdevs%2Fcontainer-pb54reu/lists"}