Metadata-Version: 1.1
Name: fabsetup
Version: 0.7.1
Summary: fabric setup scripts and fabric utils library
Home-page: https://github.com/theno/fabsetup
Author: Theodor Nolte
Author-email: fabsetup@theno.eu
License: MIT
Description: fabsetup
        ========
        
        Fabric tasks in order to set up and maintain configurations, software
        installations and other things on a local or remote linux system (most
        functionality for Debian/Ubuntu).
        
        Installation
        ------------
        
        .. code:: sh
        
            sudo apt-get install  git  fabric
            mkdir ~/repos && cd ~/repos
            git clone  https://github.com/theno/fabsetup.git
        
        How to use fabsetup
        -------------------
        
        **fabsetup** is a **`fabric <http://www.fabfile.org/>`__** script, so
        every command starts with a **``fab``**:
        
        .. code:: sh
        
            # go to the fabsetup repository
            cd ~/repos/fabsetup
        
        
            # task infos
        
            ## list all tasks: '-l'
            fab -l
        
            ## show details: '-d'
            fab -d setup.vim
        
        
            # run tasks
        
            fab setup.regex_repl
        
            ## on your local host:
            fab setup.pencil_v3 -H localhost
        
            ## remote host:
            fab up -H example.com
        
        **`Setup-Howtos <./howtos>`__**:
        
        -  Customize fabsetup: `Initialize git repository
           ``fabsetup_custom`` <./howtos/fabsetup_custom.md>`__
        -  `Set up an environment without sudo access <./howtos/no-sudo.md>`__
        -  `Webserver Certificates with Letsencrypt <./howtos/letsencrypt.md>`__
        -  `Host an Owncloud Service <./howtos/owncloud.md>`__
        -  `Host an own F-Droid Repository <./howtos/f-droid-repo.md>`__
           (Android App Repository)
        -  `Host a Selfoss Service <./howtos/selfoss.md>`__ (RSS Reader Web
           Application)
        -  `Install latest Node.js via nvm <./howtos/nodejs.md>`__
        -  `Create or update a reveal.js presentation <./howtos/revealjs.md>`__
        
Keywords: python development utilities library
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
