{"id":15445262,"url":"https://github.com/jhermann/devpi-puppet","last_synced_at":"2026-05-06T20:35:42.443Z","repository":{"id":20339999,"uuid":"23614598","full_name":"jhermann/devpi-puppet","owner":"jhermann","description":":truck: A puppet module to install devpi-server behind a NginX proxy","archived":false,"fork":false,"pushed_at":"2016-04-26T15:13:25.000Z","size":208,"stargazers_count":2,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-28T08:15:22.831Z","etag":null,"topics":["development-environment","devpi","devpi-server","nginx","puppet","pypi","python"],"latest_commit_sha":null,"homepage":"","language":"Puppet","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jhermann.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}},"created_at":"2014-09-03T09:36:37.000Z","updated_at":"2017-05-09T20:40:50.000Z","dependencies_parsed_at":"2022-07-25T12:33:50.893Z","dependency_job_id":null,"html_url":"https://github.com/jhermann/devpi-puppet","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/jhermann/devpi-puppet","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jhermann%2Fdevpi-puppet","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jhermann%2Fdevpi-puppet/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jhermann%2Fdevpi-puppet/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jhermann%2Fdevpi-puppet/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jhermann","download_url":"https://codeload.github.com/jhermann/devpi-puppet/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jhermann%2Fdevpi-puppet/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32711476,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-06T19:35:05.142Z","status":"ssl_error","status_checked_at":"2026-05-06T19:35:03.996Z","response_time":117,"last_error":"SSL_read: 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":["development-environment","devpi","devpi-server","nginx","puppet","pypi","python"],"created_at":"2024-10-01T19:44:29.681Z","updated_at":"2026-05-06T20:35:42.427Z","avatar_url":"https://github.com/jhermann.png","language":"Puppet","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ![logo](https://raw.githubusercontent.com/jhermann/devpi-puppet/master/doc/static/logo-32.png) devpi-puppet\n\n![Apache 2.0 licensed](http://img.shields.io/badge/license-Apache_2.0-red.svg)\n\n**Table of Contents**\n\n- [Overview](#user-content-overview)\n- [TL;DR](#user-content-tldr)\n- [Using the module in detail](#user-content-using-the-module-in-detail)\n- [Tested platforms](#user-content-tested-platforms)\n- [Related projects](#user-content-related-projects)\n- [References](#user-content-references)\n\n\n## Overview\n\nThis is a Puppet module to install [devpi-server](http://doc.devpi.net/latest/) behind a NginX proxy.\nSee also [debianized-devpi](https://github.com/jhermann/devpi-enterprisey/tree/master/debianized-devpi)\nfor building the required `devpi` package.\nOn non-Debian platforms, you can use [fpm](https://github.com/jordansissel/fpm) or similar tools to build such a package.\n\n| Screenshot of the 'default' theme |\n|:-------------:|\n| ![Screenshot of the 'default' theme](https://raw.githubusercontent.com/jhermann/devpi-puppet/master/doc/static/theme-default.png) |\n\n\n## TL;DR\n\nIf you just want a working 'devpi-server' on your machine proxied by NginX on port 31415\nand watched by `supervisord`, then call these commands, after either installing\nthe `devpi` package via `dpkg -i`, or providing it in a source registered with APT:\n\n```sh\ngit clone \"https://github.com/jhermann/devpi-puppet.git\"\ncd devpi-puppet\nsudo ./apply.sh\n```\n\nYou can also pass `--noop` and other Puppet options to the script.\nIt installs Puppet if that's missing, and then applies the node definition contained in `site.pp`.\n\n\n## Using the module in detail\n\n### Parameters\n\nAll the possible parameters are documented in\n[init.pp](https://github.com/jhermann/devpi-puppet/tree/master/manifests/init.pp) and\n[nginx.pp](https://github.com/jhermann/devpi-puppet/tree/master/manifests/nginx.pp).\nFor creating a simple HTML rendering, use this command:\n\n```sh\nrdoc -q -SN1 -E pp=rb \u003edoc/index.html manifests/init.pp manifests/nginx.pp\n```\n\n\n### Importing the module into your project\n\nIf for whatever reason you don't want to use tools like\nthe [puppet module](https://docs.puppetlabs.com/puppet/latest/reference/modules_installing.html) command\nor [librarian-puppet](http://librarian-puppet.com/),\nthe following shows how to use `git subtree` (as opposed to `git submodule`)\nto import this repository into your `modules` directory.\n\nFirst, and once only, add `devpi-puppet` to your remotes and add a subtree named `modules/devpi`:\n\n```sh\ngit remote add -f devpi-puppet \"https://github.com/jhermann/devpi-puppet.git\"\ngit remote update \u0026\u0026 git subtree add --prefix modules/devpi devpi-puppet master --squash\n```\n\nThen to later update the subtree, use this:\n\n```sh\ngit remote update \u0026\u0026 git subtree pull --prefix modules/devpi devpi-puppet master --squash\n```\n\nYou can also use a tag name instead of `master`, to get a specific release.\n\n\n## Tested platforms\n\nThis module is known to work on:\n\n* Debian 7.6 (wheezy)\n* Ubuntu 12.04 (precise)\n* Ubuntu 14.04 (trusty)\n\n\n## Related projects\n\n* [devpi](https://bitbucket.org/hpk42/devpi) – The main project on Bitbucket.\n* [devpi Debian packaging](https://github.com/jhermann/devpi-enterprisey/tree/master/debianized-devpi) – Build a DEB package for `devpi` that contains all dependencies and extensions in a virtualenv.\n* [puppet-module-skeleton](https://github.com/garethr/puppet-module-skeleton) – A great stencil for Puppet modules.\n* [daniellawrence/puppet-devpi](https://github.com/daniellawrence/puppet-devpi) – An alternative `devpi` Puppet module.\n* [dave-shawley/devpi-cookbook](https://github.com/dave-shawley/devpi-cookbook) – Chef cookbook for `devpi-server`.\n* [ansible-devpi](https://github.com/dhellmann/ansible-devpi) – Ansible role for setting up a `devpi` server  by Doug Hellmann.\n* [scrapinghub/docker-devpi](https://github.com/scrapinghub/docker-devpi) – Trusted build of `devpi` published to the public Docker registry.\n* [daniellawrence/devpi-docker](https://github.com/daniellawrence/devpi-docker) – Running `devpi` the easy way.\n* [fschulze/devpi-buildout](https://github.com/fschulze/devpi-buildout) – A buildout to set up `devpi-server` on localhost.\n\n\n## References\n\n* [devpi Docs](http://doc.devpi.net/latest/)\n* [Puppet Homepage](https://puppetlabs.com/puppet/puppet-open-source)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjhermann%2Fdevpi-puppet","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjhermann%2Fdevpi-puppet","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjhermann%2Fdevpi-puppet/lists"}