Metadata-Version: 2.1
Name: bagitup
Version: 0.0.4
Summary: bagitup is a Pythob based module that enables you to automatically backup your files and databases to Git
Home-page: https://github.com/geetanshjindal/bagitup
Author: Geetansh Jindal
Author-email: geetansh@hackreports.com
License: UNKNOWN
Description: # BagitUp
        **BagitUp** is a Pythob based module that enables you to automatically backup your files and databases to Git
        
        ## Install
        pip install bagitpp
        
        ## .env file example:
        
        ```
        # .env  
        git_url="https://username:password@git_repo_url"  
        mysql_host="hostname"  
        mysql_username="user"  
        mysql_pass="pass"  
        mysql_dbname="Database Name"  
        ```
        
        ## STEPS
        1. create a new ".env" file inside folder you want to backup (or update existing)
        2. run the command "python -m bagitup -d /folder/to/backup/"
        3. set CRON to automate the process
        
        ## Basic usage
        set environment variables in .env file
        
        ```bash
        python -m bagitup -d /folder/to/backup/
        ```
        
        ## License
        
        MIT licensed. See the
        [LICENSE](https://github.com/geetanshjindal/BagitUp/blob/master/LICENSE) file
        for more details.
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
