{"id":28352549,"url":"https://github.com/justinmerrell/django-devops","last_synced_at":"2025-10-29T15:40:47.715Z","repository":{"id":38236599,"uuid":"421463007","full_name":"justinmerrell/django-DevOps","owner":"justinmerrell","description":"All the essential tools to go from development to production.","archived":false,"fork":false,"pushed_at":"2025-03-25T16:10:47.000Z","size":98,"stargazers_count":2,"open_issues_count":4,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-04T05:41:09.279Z","etag":null,"topics":["devops","django","python"],"latest_commit_sha":null,"homepage":"","language":"Python","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/justinmerrell.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}},"created_at":"2021-10-26T14:40:21.000Z","updated_at":"2025-03-15T22:20:38.000Z","dependencies_parsed_at":"2025-01-20T19:31:20.969Z","dependency_job_id":"cc838e2b-2744-430f-a4e6-0556a72d425c","html_url":"https://github.com/justinmerrell/django-DevOps","commit_stats":null,"previous_names":[],"tags_count":21,"template":false,"template_full_name":null,"purl":"pkg:github/justinmerrell/django-DevOps","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justinmerrell%2Fdjango-DevOps","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justinmerrell%2Fdjango-DevOps/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justinmerrell%2Fdjango-DevOps/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justinmerrell%2Fdjango-DevOps/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/justinmerrell","download_url":"https://codeload.github.com/justinmerrell/django-DevOps/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/justinmerrell%2Fdjango-DevOps/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260961729,"owners_count":23089280,"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":["devops","django","python"],"created_at":"2025-05-27T23:07:18.468Z","updated_at":"2025-10-29T15:40:47.704Z","avatar_url":"https://github.com/justinmerrell.png","language":"Python","readme":"\u003cdiv align=\"center\"\u003e\n\n\u003ch1\u003e django-DevOps \u003c/h1\u003e\n\n[![Code Quality](https://github.com/justinmerrell/django-DevOps/actions/workflows/pylint.yml/badge.svg)](https://github.com/justinmerrell/django-DevOps/actions/workflows/pylint.yml)\n[![Script Check](https://github.com/justinmerrell/django-DevOps/actions/workflows/shellcheck.yml/badge.svg)](https://github.com/justinmerrell/django-DevOps/actions/workflows/shellcheck.yml) \u0026nbsp;\n[![CodeQL](https://github.com/justinmerrell/django-DevOps/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/justinmerrell/django-DevOps/actions/workflows/codeql-analysis.yml)\n\n\u003c/div\u003e\n\n## Table of Contents\n\n- [Table of Contents](#table-of-contents)\n- [What is django-DevOps?](#what-is-django-devops)\n- [Getting Started](#getting-started)\n  - [Configuration Files](#configuration-files)\n- [Manage Commands](#manage-commands)\n- [Directory Structure](#directory-structure)\n- [License](#license)\n\n## What is django-DevOps?\n\nThe goal of this repository is to provide a set of programmatic tools to help you build and deploy your Django projects. This is done by defining best practices for the following:\n\n- Service and Config file management\n- Auto deploy from GIT\n- Guided feature implementation\n\nNo more returning to the same Stackoverflow pages every time you start a new project just to remind yourself what directory config files should be placed in. All files can now be managed from a project level and quickly deployed/updated.\n\n## Getting Started\n\nTo install the package, run the following command:\n\n```bash\npip install django-DevOps\n```\n\nThen add `django_devoop` to your `INSTALLED_APPS` list in your `settings.py` file.\n\n```python\nINSTALLED_APPS = [\n    ...\n    'django_devops',\n    ...\n]\n```\n\nFor additional pip information visit: [https://pypi.org/project/django-DevOps/](https://pypi.org/project/django-DevOps/)\n\n### Configuration Files\n\nUnder your project folder create a `config_files` and `service_files` folder to place files to be deployed.\n\nA config file _with the same name_ as the project will be treated as the NGINX config file and copied to site-available.\n\n## Manage Commands\n\n| Command          | Description                                                                                            |\n| ---------------- | ------------------------------------------------------------------------------------------------------ |\n| devops           | Guided project review. (Recommended)                                                                   |\n| do_guide_account | Walks through the guide for user account management.                                                   |\n| prep_gunicorn    | Prepares the gunicorn config file for use with gunicorn.                                               |\n| prep_celery      | Prepares the celery config file for use with celery.                                                   |\n| prep_nginx       | Prepares the nginx config file for use with nginx.                                                     |\n| update_services  | Similar to \"collectstatic\", this command will deploy config and service files from the project folder. |\n\n## Directory Structure\n\n```default\n.\n├── .github             # CI/CD using GitHub Actions and other functions.\n└── django_devops       # Main package directory.\n```\n\n## License\n\nThis project is licensed under the terms of the [MIT license](https://opensource.org/licenses/MIT).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjustinmerrell%2Fdjango-devops","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjustinmerrell%2Fdjango-devops","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjustinmerrell%2Fdjango-devops/lists"}