{"id":19807662,"url":"https://github.com/westurner/provis","last_synced_at":"2025-05-01T07:31:42.333Z","repository":{"id":16084584,"uuid":"18829242","full_name":"westurner/provis","owner":"westurner","description":"Infrastructure Provisioning Scripts and Configuration Sets https://provis.readthedocs.org/","archived":false,"fork":false,"pushed_at":"2016-08-06T01:05:18.000Z","size":421,"stargazers_count":6,"open_issues_count":3,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-04-06T11:11:16.151Z","etag":null,"topics":["devops","makefile","packer","packer-vagrant","python","saltstack","shell","vagrant","vagrantfile"],"latest_commit_sha":null,"homepage":"https://provis.readthedocs.org/","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/westurner.png","metadata":{"files":{"readme":"README.rst","changelog":"HISTORY.rst","contributing":"CONTRIBUTING.rst","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-04-16T06:23:30.000Z","updated_at":"2024-11-28T16:29:09.000Z","dependencies_parsed_at":"2022-09-24T11:02:14.335Z","dependency_job_id":null,"html_url":"https://github.com/westurner/provis","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/westurner%2Fprovis","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/westurner%2Fprovis/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/westurner%2Fprovis/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/westurner%2Fprovis/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/westurner","download_url":"https://codeload.github.com/westurner/provis/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251840269,"owners_count":21652311,"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","makefile","packer","packer-vagrant","python","saltstack","shell","vagrant","vagrantfile"],"created_at":"2024-11-12T09:11:37.025Z","updated_at":"2025-05-01T07:31:41.977Z","avatar_url":"https://github.com/westurner.png","language":"Shell","readme":"===============================\nREADME\n===============================\n\n.. ..  image:: https://badge.fury.io/py/provis.png\n..        :target: http://badge.fury.io/py/provis\n\n.. ..  image:: https://travis-ci.org/westurner/provis.png?branch=master\n..         :target: https://travis-ci.org/westurner/provis\n\n.. ..  image:: https://pypip.in/d/provis/badge.png\n..         :target: https://crate.io/packages/provis?version=latest\n\n| Docs: https://provis.readthedocs.org/en/latest/\n| Source: git https://github.com/westurner/provis\n| Source: git `\u003cssh://git@github.com/westurner/provis\u003e`__\n| Issues: https://github.com/westurner/provis/issues\n\n\nProvis\n========\n\nInfrastructure Provisioning Scripts and Configuration Sets\n\n`A Python package`_ with a few tests, system bootstrap scripts, and a Makefile\nfor building and configuring cloud servers with a number of helpful\n`tools`_:\n\n* Ubuntu Linux\n* Packer (Go)\n* Vagrant (Ruby)\n* Salt (Python)\n\n.. _A Python package: http://provis.readthedocs.org/en/latest/products.html#provis-package\n.. _tools: http://provis.readthedocs.org/en/latest/tools.html\n\n.. .. include:: goals.rst\n\n.. contents::   \n\nInstallation\n============\n* `Install build requirements`_\n* `Install the Provis Package`_\n\n\nInstall the Provis Package\n----------------------------\nClone and install the package from source::\n\n    pip install -e ssh://git@github.com/westurner/provis#egg=provis\n\nOr, clone the repository and manually install::\n\n    ## clone\n    git clone ssh://git@github.com/westurner/provis\n    git clone https://github.com/westurner/provis\n\n    cd ./provis\n\n    ## install\n    python setup.py develop  # creates a provis.egg-link in site-packages\n    python setup.py install  # copies the binary dist to site-packages\n\nInstall Python requirements::\n\n    cd ./provis\n    pip install -r requirements.txt\n\n.. _virtualenv: http://www.virtualenv.org/en/latest/\n.. _virtualenvwrapper: http://virtualenvwrapper.readthedocs.org/en/latest/\n\n\n\nInstall Build Requirements\n----------------------------\n\nUbuntu 12.04 LTS\n~~~~~~~~~~~~~~~~~~\n\nInstall make, build requirements:\n\n   apt-get install make python pip\n\n* Install `make`_::\n\n   apt-get install make\n\n* Install `pip`_::\n\n   apt-get install pip\n   pip install --upgrade pip\n\n* Install `virtualenv`_ and `virtualenvwrapper`_ (optional)::\n\n   pip install virtualenv virtualenvwrapper\n\n  Create a `virtualenv`_ with `virtualenvwrapper`_ (optional)::\n\n   mkvirtualenv provis\n   workon provis\n\n\nUsage\n=======\n\nTests\n--------\nRun the Provis Python package tests with the current environment::\n\n\n   ## Check localhost\n   python runtests.py  # python setup.py test\n\n   ## Check reference set\n   python runtests.py tests/provis_tests.py\n\nRun the Provis Python package tests with tox and many environments::\n\n   tox\n\n\nMakefile\n----------\nInstall ``make`` (if it is not already installed)::\n\n   sudo apt-get install make\n\nList ``Makefile`` command descriptions::\n\n   make help\n   make \n\n::\n\n   #cd ./provis\n   ls -al\n\n::\n\n   $EDITOR Makefile\n\n\nRun ``make`` with the `Makefile`_::\n\n\n   cd ./provis\n   make\n   make help\n   make setup\n\n\nLicense\n=========\n\n* Free software: `BSD license \u003c#license\u003e`_\n\n.. include:: ./LICENSE\n\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwesturner%2Fprovis","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwesturner%2Fprovis","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwesturner%2Fprovis/lists"}