{"id":29123629,"url":"https://github.com/cheesecake87/gitdeploy","last_synced_at":"2026-04-28T10:36:19.403Z","repository":{"id":65964262,"uuid":"583058720","full_name":"CheeseCake87/GitDeploy","owner":"CheeseCake87","description":"GitDeploy allows you to deploy your git projects.","archived":false,"fork":false,"pushed_at":"2023-03-02T14:16:47.000Z","size":780,"stargazers_count":1,"open_issues_count":7,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-10-09T12:32:14.037Z","etag":null,"topics":["autodeploy","deployment","flask","python","python3","supervisor"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CheeseCake87.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":"2022-12-28T16:32:30.000Z","updated_at":"2025-06-20T07:10:12.000Z","dependencies_parsed_at":"2023-04-13T20:31:10.744Z","dependency_job_id":null,"html_url":"https://github.com/CheeseCake87/GitDeploy","commit_stats":null,"previous_names":["cheesecake87/gitdeploy"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/CheeseCake87/GitDeploy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CheeseCake87%2FGitDeploy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CheeseCake87%2FGitDeploy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CheeseCake87%2FGitDeploy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CheeseCake87%2FGitDeploy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CheeseCake87","download_url":"https://codeload.github.com/CheeseCake87/GitDeploy/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CheeseCake87%2FGitDeploy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32377588,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-28T09:24:15.638Z","status":"ssl_error","status_checked_at":"2026-04-28T09:24:15.071Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["autodeploy","deployment","flask","python","python3","supervisor"],"created_at":"2025-06-29T19:09:07.781Z","updated_at":"2026-04-28T10:36:19.384Z","avatar_url":"https://github.com/CheeseCake87.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# GitDeploy\n\n[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)\n\nGitDeploy is a simple tool to deploy your python projects to a docker container or VPS from a git repository.\n\nIt has webhooks support for github and gitlab, the end goal is to have Heroku style functionality.\n\n## Docker\n\n[ goto: [flaskplanet/gitdeploy](https://hub.docker.com/r/flaskplanet/gitdeploy) ]\n\nLatest: v1.0.6 ( Stable )\n\n### Notice\n\n**Project is still in development, and may not work as intended.**\n\n## Contributors wanted!\n\n- Free to add your own ideas!\n- Beginners are welcome and encouraged to join in!\n\n### TODOs:\n\n- [ ] Create auto install sh scripts for different distros\n- [ ] Change the JavaScript to polling function to a websocket ( Flask-SocketIO )\n    - ( app/theme/static/js/alpine:global:x-data.js )\n- [ ] Add support for more git providers ( Bitbucket, Gitlab, etc. )\n- [ ] Ability to add multiple repositories, and start/stop their commands\n- [ ] Add support to spin up a nginx container / local install to serve the app\n- [ ] Add support to manage nginx proxy\n- [ ] Add support to manage certbot ( Let's Encrypt )\n\nSee more in the issues section!\n\n### How to contribute\n\n- Fork the repository\n- Make your changes\n- Create a pull request\n- Wait for review\n\nIf you are a beginner, you can also check out\n[this guide](https://opensource.com/article/19/7/create-pull-request-github)\n\nYou can also join the [discord server](https://discord.gg/nZkQECDU) to discuss the project.\n\n## Local setup\n\nClone the repository and install the requirements:\n\n```bash\ngit clone https://github.com/Flask-Planet/GitDeploy.git\n```\n\n```bash\ncd GitDeploy\n```\n\n**GNU/Linux / macOS:**\n\n```bash\npython3 -m venv venv\n```\n\n```bash\nsource venv/bin/activate\n```\n\n```bash\npip install -r requirements.txt\n```\n\n**_Staring the process in the foreground:_**\n\n```bash\npython3 start.py\n```\n\n**_Staring the process in the background:_**\n\n```bash\npython3 start.py --in-background\n```\n\n**_To stop the process:_**\n\n```bash\npython3 stop.py\n```\n\n**Windows:**\n\n_**Run above in WSL**_\n\n### Screenshots\n\n![](https://raw.githubusercontent.com/Flask-Planet/GitDeploy/master/__assets__/screenshot_1.png)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcheesecake87%2Fgitdeploy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcheesecake87%2Fgitdeploy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcheesecake87%2Fgitdeploy/lists"}