summaryrefslogtreecommitdiffstats
path: root/gitautodeploy
diff options
context:
space:
mode:
authorOliver Poignant <oliver@poignant.se>2016-05-04 16:09:22 +0200
committerOliver Poignant <oliver@poignant.se>2016-05-04 16:09:22 +0200
commitcd93746bc96a30e2582092d95fca5bcfe74090e3 (patch)
tree2aa04bae68b92fb29dc15d57a37983682956dfda /gitautodeploy
parent8ffdd1428e8969ab813f1008915a237377ae1e25 (diff)
downloadGit-Auto-Deploy-cd93746bc96a30e2582092d95fca5bcfe74090e3.zip
Git-Auto-Deploy-cd93746bc96a30e2582092d95fca5bcfe74090e3.tar.gz
Git-Auto-Deploy-cd93746bc96a30e2582092d95fca5bcfe74090e3.tar.bz2
Separating config parsing from main application
Diffstat (limited to 'gitautodeploy')
-rw-r--r--gitautodeploy/cli/config.py299
-rw-r--r--gitautodeploy/gitautodeploy.py360
2 files changed, 362 insertions, 297 deletions
diff --git a/gitautodeploy/cli/config.py b/gitautodeploy/cli/config.py
index 332b03e..84c79c9 100644
--- a/gitautodeploy/cli/config.py
+++ b/gitautodeploy/cli/config.py
@@ -1,4 +1,299 @@
+def get_config_defaults():
+ """Get the default configuration values."""
+ config = {}
+ config['quiet'] = False
+ config['daemon-mode'] = False
+ config['config'] = None
+ config['ssh-keygen'] = False
+ config['force'] = False
+ config['ssl'] = False
+ config['ssl-pem-file'] = '~/.gitautodeploy.pem'
+ config['pidfilepath'] = '~/.gitautodeploy.pid'
+ config['logfilepath'] = None
+ config['host'] = '0.0.0.0'
+ config['port'] = 8001
-def generate_config():
- print "Generating config" \ No newline at end of file
+ return config
+
+def get_config_from_environment():
+ """Get configuration values provided as environment variables."""
+ import os
+
+ config = {}
+
+ if 'GAD_QUIET' in os.environ:
+ config['quiet'] = True
+
+ if 'GAD_DAEMON_MODE' in os.environ:
+ config['daemon-mode'] = True
+
+ if 'GAD_CONFIG' in os.environ:
+ config['config'] = os.environ['GAD_CONFIG']
+
+ if 'GAD_SSH_KEYGEN' in os.environ:
+ config['ssh-keygen'] = True
+
+ if 'GAD_FORCE' in os.environ:
+ config['force'] = True
+
+ if 'GAD_SSL' in os.environ:
+ config['ssl'] = True
+
+ if 'GADGAD_SSL_PEM_FILE_SSL' in os.environ:
+ config['ssl-pem-file'] = os.environ['GAD_SSL_PEM_FILE']
+
+ if 'GAD_PID_FILE' in os.environ:
+ config['pidfilepath'] = os.environ['GAD_PID_FILE']
+
+ if 'GAD_LOG_FILE' in os.environ:
+ config['logfilepath'] = os.environ['GAD_LOG_FILE']
+
+ if 'GAD_HOST' in os.environ:
+ config['host'] = os.environ['GAD_HOST']
+
+ if 'GAD_PORT' in os.environ:
+ config['port'] = int(os.environ['GAD_PORT'])
+
+ return config
+
+def get_config_from_argv(argv):
+ import argparse
+
+ parser = argparse.ArgumentParser()
+
+ parser.add_argument("-d", "--daemon-mode",
+ help="run in background (daemon mode)",
+ dest="daemon-mode",
+ action="store_true")
+
+ parser.add_argument("-q", "--quiet",
+ help="supress console output",
+ dest="quiet",
+ action="store_true")
+
+ parser.add_argument("-c", "--config",
+ help="custom configuration file",
+ dest="config",
+ type=str)
+
+ parser.add_argument("--ssh-keygen",
+ help="scan repository hosts for ssh keys",
+ dest="ssh-keygen",
+ action="store_true")
+
+ parser.add_argument("--force",
+ help="kill any process using the configured port",
+ dest="force",
+ action="store_true")
+
+ parser.add_argument("--pid-file",
+ help="specify a custom pid file",
+ dest="pidfilepath",
+ type=str)
+
+ parser.add_argument("--log-file",
+ help="specify a log file",
+ dest="logfilepath",
+ type=str)
+
+ parser.add_argument("--host",
+ help="address to bind to",
+ dest="host",
+ type=str)
+
+ parser.add_argument("--port",
+ help="port to bind to",
+ dest="port",
+ type=int)
+
+ parser.add_argument("--ssl",
+ help="use ssl",
+ dest="ssl",
+ action="store_true")
+
+ parser.add_argument("--ssl-pem",
+ help="path to ssl pem file",
+ dest="ssl-pem",
+ type=str)
+
+ config = vars(parser.parse_args(argv))
+
+ # Delete entries for unprovided arguments
+ del_keys = []
+ for key in config:
+ if config[key] is None:
+ del_keys.append(key)
+
+ for key in del_keys:
+ del config[key]
+
+ return config
+
+def find_config_file(target_directories=None):
+ """Attempt to find a path to a config file. Provided paths are scanned
+ for *.conf(ig)?.json files."""
+ import os
+ import re
+ import logging
+ logger = logging.getLogger()
+
+ if not target_directories:
+ return
+
+ # Remove duplicates
+ target_directories = list(set(target_directories))
+
+ # Look for a *conf.json or *config.json
+ for dir in target_directories:
+
+ if not os.access(dir, os.R_OK):
+ continue
+
+ for item in os.listdir(dir):
+ if re.match(r".*conf(ig)?\.json$", item):
+ path = os.path.realpath(os.path.join(dir, item))
+ logger.info("Using '%s' as config" % path)
+ return path
+
+def get_config_from_file(path):
+ """Get configuration values from config file."""
+ import logging
+ import os
+ logger = logging.getLogger()
+
+ config_file_path = os.path.realpath(path)
+ logger.info('Using custom configuration file \'%s\'' % config_file_path)
+
+ # Read config data from json file
+ if config_file_path:
+ config_data = read_json_file(config_file_path)
+ else:
+ logger.info('No configuration file found or specified. Using default values.')
+ config_data = {}
+
+ return config_data
+
+def read_json_file(file_path):
+ import json
+ import logging
+ import re
+ logger = logging.getLogger()
+
+ try:
+ json_string = open(file_path).read()
+
+ except Exception as e:
+ logger.critical("Could not load %s file\n" % file_path)
+ raise e
+
+ try:
+ # Remove commens from JSON (makes sample config options easier)
+ regex = r'\s*(#|\/{2}).*$'
+ regex_inline = r'(:?(?:\s)*([A-Za-z\d\.{}]*)|((?<=\").*\"),?)(?:\s)*(((#|(\/{2})).*)|)$'
+ lines = json_string.split('\n')
+
+ for index, line in enumerate(lines):
+ if re.search(regex, line):
+ if re.search(r'^' + regex, line, re.IGNORECASE):
+ lines[index] = ""
+ elif re.search(regex_inline, line):
+ lines[index] = re.sub(regex_inline, r'\1', line)
+
+ data = json.loads('\n'.join(lines))
+
+ except Exception as e:
+ logger.critical("%s file is not valid JSON\n" % file_path)
+ raise e
+
+ return data
+
+def init_config(config):
+ """Initialize config by filling out missing values etc."""
+
+ import os
+ import re
+ import logging
+ logger = logging.getLogger()
+
+ # Translate any ~ in the path into /home/<user>
+ if 'pidfilepath' in config:
+ config['pidfilepath'] = os.path.expanduser(config['pidfilepath'])
+
+ if 'logfilepath' in config:
+ config['logfilepath'] = os.path.expanduser(config['logfilepath'])
+
+ if 'repositories' not in config:
+ config['repositories'] = []
+
+ for repo_config in config['repositories']:
+
+ # Setup branch if missing
+ if 'branch' not in repo_config:
+ repo_config['branch'] = "master"
+
+ # Setup remote if missing
+ if 'remote' not in repo_config:
+ repo_config['remote'] = "origin"
+
+ # Setup deploy commands list if not present
+ if 'deploy_commands' not in repo_config:
+ repo_config['deploy_commands'] = []
+
+ # Check if any global pre deploy commands is specified
+ if 'global_deploy' in config and len(config['global_deploy'][0]) is not 0:
+ repo_config['deploy_commands'].insert(0, config['global_deploy'][0])
+
+ # Check if any repo specific deploy command is specified
+ if 'deploy' in repo_config:
+ repo_config['deploy_commands'].append(repo_config['deploy'])
+
+ # Check if any global post deploy command is specified
+ if 'global_deploy' in config and len(config['global_deploy'][1]) is not 0:
+ repo_config['deploy_commands'].append(config['global_deploy'][1])
+
+ # If a Bitbucket repository is configured using the https:// URL, a username is usually
+ # specified in the beginning of the URL. To be able to compare configured Bitbucket
+ # repositories with incoming web hook events, this username needs to be stripped away in a
+ # copy of the URL.
+ if 'url' in repo_config and 'bitbucket_username' not in repo_config:
+ regexp = re.search(r"^(https?://)([^@]+)@(bitbucket\.org/)(.+)$", repo_config['url'])
+ if regexp:
+ repo_config['url_without_usernme'] = regexp.group(1) + regexp.group(3) + regexp.group(4)
+
+ # Translate any ~ in the path into /home/<user>
+ if 'path' in repo_config:
+ repo_config['path'] = os.path.expanduser(repo_config['path'])
+
+ return config
+
+def get_repo_config_from_environment():
+ """Look for repository config in any defined environment variables. If
+ found, import to main config."""
+ import logging
+ import os
+
+ if 'GAD_REPO_URL' not in os.environ:
+ return
+
+ logger = logging.getLogger()
+
+ repo_config = {
+ 'url': os.environ['GAD_REPO_URL']
+ }
+
+ logger.info("Added configuration for '%s' found in environment variables" % os.environ['GAD_REPO_URL'])
+
+ if 'GAD_REPO_BRANCH' in os.environ:
+ repo_config['branch'] = os.environ['GAD_REPO_BRANCH']
+
+ if 'GAD_REPO_REMOTE' in os.environ:
+ repo_config['remote'] = os.environ['GAD_REPO_REMOTE']
+
+ if 'GAD_REPO_PATH' in os.environ:
+ repo_config['path'] = os.environ['GAD_REPO_PATH']
+
+ if 'GAD_REPO_DEPLOY' in os.environ:
+ repo_config['deploy'] = os.environ['GAD_REPO_DEPLOY']
+
+ return repo_config \ No newline at end of file
diff --git a/gitautodeploy/gitautodeploy.py b/gitautodeploy/gitautodeploy.py
index d233923..66c922b 100644
--- a/gitautodeploy/gitautodeploy.py
+++ b/gitautodeploy/gitautodeploy.py
@@ -34,10 +34,10 @@ class GitAutoDeploy(object):
logger.warning('I don\'t know the number of pid that is using my configured port')
return
- logger.info('Process with pid number %s is using port %s' % (pid, port))
+ logger.info('Process with PID %s is using port %s' % (pid, port))
with open("/proc/%s/cmdline" % pid) as f:
cmdline = f.readlines()
- logger.info('cmdline ->', cmdline[0].replace('\x00', ' '))
+ logger.info('Process with PID %s was started using the command: %s' % (pid, cmdline[0].replace('\x00', ' ')))
@staticmethod
def get_pid_on_port(port):
@@ -78,163 +78,6 @@ class GitAutoDeploy(object):
return mpid
- def find_config_file_path(self):
- """Attempt to find a config file in cwd and script path."""
-
- import os
- import re
- import logging
- logger = logging.getLogger()
-
- # Look for a custom config file if no path is provided as argument
- target_directories = [
- os.path.dirname(os.path.realpath(__file__)), # Script path
- ]
-
- # Add current CWD if not identical to script path
- if not os.getcwd() in target_directories:
- target_directories.append(os.getcwd())
-
- target_directories.reverse()
-
- # Look for a *conf.json or *config.json
- for dir in target_directories:
- if not os.access(dir, os.R_OK):
- continue
- for item in os.listdir(dir):
- if re.match(r".*conf(ig)?\.json$", item):
- path = os.path.realpath(os.path.join(dir, item))
- logger.info("Using '%s' as config" % path)
- return path
-
- return
-
- def read_json_file(self, file_path):
- import json
- import logging
- import re
- logger = logging.getLogger()
-
- try:
- json_string = open(file_path).read()
-
- except Exception as e:
- logger.critical("Could not load %s file\n" % file_path)
- raise e
-
- try:
- # Remove commens from JSON (makes sample config options easier)
- regex = r'\s*(#|\/{2}).*$'
- regex_inline = r'(:?(?:\s)*([A-Za-z\d\.{}]*)|((?<=\").*\"),?)(?:\s)*(((#|(\/{2})).*)|)$'
- lines = json_string.split('\n')
-
- for index, line in enumerate(lines):
- if re.search(regex, line):
- if re.search(r'^' + regex, line, re.IGNORECASE):
- lines[index] = ""
- elif re.search(regex_inline, line):
- lines[index] = re.sub(regex_inline, r'\1', line)
-
- data = json.loads('\n'.join(lines))
-
- except Exception as e:
- logger.critical("%s file is not valid JSON\n" % file_path)
- raise e
-
- return data
-
- def read_repo_config_from_environment(self, config_data):
- """Look for repository config in any defined environment variables. If
- found, import to main config."""
- import logging
- import os
-
- if 'GAD_REPO_URL' not in os.environ:
- return config_data
-
- logger = logging.getLogger()
-
- repo_config = {
- 'url': os.environ['GAD_REPO_URL']
- }
-
- logger.info("Added configuration for '%s' found in environment variables" % os.environ['GAD_REPO_URL'])
-
- if 'GAD_REPO_BRANCH' in os.environ:
- repo_config['branch'] = os.environ['GAD_REPO_BRANCH']
-
- if 'GAD_REPO_REMOTE' in os.environ:
- repo_config['remote'] = os.environ['GAD_REPO_REMOTE']
-
- if 'GAD_REPO_PATH' in os.environ:
- repo_config['path'] = os.environ['GAD_REPO_PATH']
-
- if 'GAD_REPO_DEPLOY' in os.environ:
- repo_config['deploy'] = os.environ['GAD_REPO_DEPLOY']
-
- if not 'repositories' in config_data:
- config_data['repositories'] = []
-
- config_data['repositories'].append(repo_config)
-
- return config_data
-
- def init_config(self, config_data):
- import os
- import re
- import logging
- logger = logging.getLogger()
-
- self._config = config_data
-
- # Translate any ~ in the path into /home/<user>
- if 'pidfilepath' in self._config:
- self._config['pidfilepath'] = os.path.expanduser(self._config['pidfilepath'])
-
- if 'repositories' not in self._config:
- self._config['repositories'] = []
-
- for repo_config in self._config['repositories']:
-
- # Setup branch if missing
- if 'branch' not in repo_config:
- repo_config['branch'] = "master"
-
- # Setup remote if missing
- if 'remote' not in repo_config:
- repo_config['remote'] = "origin"
-
- # Setup deploy commands list if not present
- if 'deploy_commands' not in repo_config:
- repo_config['deploy_commands'] = []
-
- # Check if any global pre deploy commands is specified
- if 'global_deploy' in self._config and len(self._config['global_deploy'][0]) is not 0:
- repo_config['deploy_commands'].insert(0, self._config['global_deploy'][0])
-
- # Check if any repo specific deploy command is specified
- if 'deploy' in repo_config:
- repo_config['deploy_commands'].append(repo_config['deploy'])
-
- # Check if any global post deploy command is specified
- if 'global_deploy' in self._config and len(self._config['global_deploy'][1]) is not 0:
- repo_config['deploy_commands'].append(self._config['global_deploy'][1])
-
- # If a Bitbucket repository is configured using the https:// URL, a username is usually
- # specified in the beginning of the URL. To be able to compare configured Bitbucket
- # repositories with incoming web hook events, this username needs to be stripped away in a
- # copy of the URL.
- if 'url' in repo_config and 'bitbucket_username' not in repo_config:
- regexp = re.search(r"^(https?://)([^@]+)@(bitbucket\.org/)(.+)$", repo_config['url'])
- if regexp:
- repo_config['url_without_usernme'] = regexp.group(1) + regexp.group(3) + regexp.group(4)
-
- # Translate any ~ in the path into /home/<user>
- if 'path' in repo_config:
- repo_config['path'] = os.path.expanduser(repo_config['path'])
-
- return self._config
-
def clone_all_repos(self):
"""Iterates over all configured repositories and clones them to their
configured paths."""
@@ -246,19 +89,19 @@ class GitAutoDeploy(object):
# Iterate over all configured repositories
for repo_config in self._config['repositories']:
-
+
# Only clone repositories with a configured path
if 'path' not in repo_config:
logger.info("Repository %s will not be cloned (no path configured)" % repo_config['url'])
continue
-
+
if os.path.isdir(repo_config['path']) and os.path.isdir(repo_config['path']+'/.git'):
logger.info("Repository %s already present" % repo_config['url'])
continue
# Clone repository
GitWrapper.clone(url=repo_config['url'], branch=repo_config['branch'], path=repo_config['path'])
-
+
if os.path.isdir(repo_config['path']):
logger.info("Repository %s successfully cloned" % repo_config['url'])
else:
@@ -358,94 +201,25 @@ class GitAutoDeploy(object):
return 0
- def run(self):
+ def run(self, config):
+ """Start an instance of GAD based on the provided config object."""
import sys
from BaseHTTPServer import HTTPServer
import socket
import os
import logging
- import argparse
from lock import Lock
from httpserver import WebhookRequestHandler
- # Attempt to retrieve default config values from environment variables
- default_quiet_value = 'GAD_QUIET' in os.environ or False
- default_daemon_mode_value = 'GAD_DAEMON_MODE' in os.environ or False
- default_config_value = 'GAD_CONFIG' in os.environ and os.environ['GAD_CONFIG'] or None
- default_ssh_keygen_value = 'GAD_SSH_KEYGEN' in os.environ or False
- default_force_value = 'GAD_FORCE' in os.environ or False
- default_use_ssl = 'GAD_SSL' in os.environ or False
- default_ssl_pem_file_path = 'GAD_SSL_PEM_FILE' in os.environ and os.environ['GAD_SSL_PEM_FILE'] or '~/.gitautodeploy.pem'
- default_pid_file_value = 'GAD_PID_FILE' in os.environ and os.environ['GAD_PID_FILE'] or '~/.gitautodeploy.pid'
- default_log_file_value = 'GAD_LOG_FILE' in os.environ and os.environ['GAD_LOG_FILE'] or None
- default_host_value = 'GAD_HOST' in os.environ and os.environ['GAD_HOST'] or '0.0.0.0'
- default_port_value = 'GAD_PORT' in os.environ and int(os.environ['GAD_PORT']) or 8001
-
- parser = argparse.ArgumentParser()
-
- parser.add_argument("-d", "--daemon-mode",
- help="run in background (daemon mode)",
- default=default_daemon_mode_value,
- action="store_true")
-
- parser.add_argument("-q", "--quiet",
- help="supress console output",
- default=default_quiet_value,
- action="store_true")
-
- parser.add_argument("-c", "--config",
- help="custom configuration file",
- default=default_config_value,
- type=str)
-
- parser.add_argument("--ssh-keygen",
- help="scan repository hosts for ssh keys",
- default=default_ssh_keygen_value,
- action="store_true")
-
- parser.add_argument("--force",
- help="kill any process using the configured port",
- default=default_force_value,
- action="store_true")
-
- parser.add_argument("--pid-file",
- help="specify a custom pid file",
- #default=default_pid_file_value,
- type=str)
-
- parser.add_argument("--log-file",
- help="specify a log file",
- #default=default_log_file_value,
- type=str)
-
- parser.add_argument("--host",
- help="address to bind to",
- #default=default_host_value,
- type=str)
-
- parser.add_argument("--port",
- help="port to bind to",
- #default=default_port_value,
- type=int)
-
- parser.add_argument("--ssl",
- help="use ssl",
- default=default_use_ssl,
- action="store_true")
-
- parser.add_argument("--ssl-pem",
- help="path to ssl pem file",
- default=default_ssl_pem_file_path,
- type=str)
-
- args = parser.parse_args()
+ # Attatch config values to this instance
+ self._config = config
# Set up logging
logger = logging.getLogger()
logFormatter = logging.Formatter("%(asctime)s [%(levelname)-5.5s] %(message)s")
# Enable console output?
- if args.quiet or args.daemon_mode:
+ if ('quiet' in self._config and self._config['quiet']) or ('daemon-mode' in self._config and self._config['daemon-mode']):
logger.addHandler(logging.NullHandler())
else:
consoleHandler = logging.StreamHandler()
@@ -455,65 +229,17 @@ class GitAutoDeploy(object):
# All logs are recording
logger.setLevel(logging.NOTSET)
- # Look for log file path provided in argument
- config_file_path = None
- if args.config:
- config_file_path = os.path.realpath(args.config)
- logger.info('Using custom configuration file \'%s\'' % config_file_path)
-
- # Try to find a config file on the file system
- if not config_file_path:
- config_file_path = self.find_config_file_path()
-
- # Read config data from json file
- if config_file_path:
- config_data = self.read_json_file(config_file_path)
- else:
- logger.info('No configuration file found or specified. Using default values.')
- config_data = {}
-
- # Pid file config
- if args.pid_file:
- config_data['pidfilepath'] = args.pid_file
- elif not 'pidfilepath' in config_data:
- config_data['pidfilepath'] = default_pid_file_value
-
- # Log file config
- if args.log_file:
- config_data['logfilepath'] = args.log_file
- elif not 'logfilepath' in config_data:
- config_data['logfilepath'] = default_log_file_value
-
- # Port config
- if args.port:
- config_data['port'] = args.port
- elif not 'port' in config_data:
- config_data['port'] = default_port_value
-
- # Host config
- if args.host:
- config_data['host'] = args.host
- elif not 'host' in config_data:
- config_data['host'] = default_host_value
-
- # Extend config data with any repository defined by environment variables
- config_data = self.read_repo_config_from_environment(config_data)
-
- # Initialize config using config file data
- self.init_config(config_data)
-
if 'logfilepath' in self._config and self._config['logfilepath']:
# Translate any ~ in the path into /home/<user>
- log_file_path = os.path.expanduser(self._config['logfilepath'])
- fileHandler = logging.FileHandler(log_file_path)
+ fileHandler = logging.FileHandler(self._config['logfilepath'])
fileHandler.setFormatter(logFormatter)
logger.addHandler(fileHandler)
- if args.ssh_keygen:
+ if 'ssh-keygen' in self._config and self._config['ssh-keygen']:
logger.info('Scanning repository hosts for ssh keys...')
self.ssh_key_scan()
- if args.force:
+ if 'force' in self._config and self._config['force']:
logger.info('Attempting to kill any other process currently occupying port %s' % self._config['port'])
self.kill_conflicting_processes()
@@ -525,7 +251,7 @@ class GitAutoDeploy(object):
sys.stdout = LogInterface(logger.info)
sys.stderr = LogInterface(logger.error)
- if args.daemon_mode:
+ if 'daemon-mode' in self._config and self._config['daemon-mode']:
logger.info('Starting Git Auto Deploy in daemon mode')
GitAutoDeploy.create_daemon()
else:
@@ -546,11 +272,11 @@ class GitAutoDeploy(object):
self._server = HTTPServer((self._config['host'],
self._config['port']),
WebhookRequestHandler)
- if args.ssl:
+ if 'ssl' in self._config and self._config['ssl']:
import ssl
logger.info("enabling ssl")
self._server.socket = ssl.wrap_socket(self._server.socket,
- certfile=os.path.expanduser(args.ssl_pem),
+ certfile=os.path.expanduser(self._config['ssl-pem']),
server_side=True)
sa = self._server.socket.getsockname()
logger.info("Listening on %s port %s", sa[0], sa[1])
@@ -558,9 +284,8 @@ class GitAutoDeploy(object):
except socket.error, e:
- if not args.daemon_mode:
- logger.critical("Error on socket: %s" % e)
- GitAutoDeploy.debug_diagnosis(self._config['port'])
+ logger.critical("Error on socket: %s" % e)
+ GitAutoDeploy.debug_diagnosis(self._config['port'])
sys.exit(1)
@@ -574,7 +299,7 @@ class GitAutoDeploy(object):
self.stop()
if signum == 1:
- self.run()
+ self.run(self._config)
return
elif signum == 2:
@@ -589,6 +314,9 @@ class GitAutoDeploy(object):
def main():
import signal
from gitautodeploy import GitAutoDeploy
+ from cli.config import *
+ import sys
+ import os
app = GitAutoDeploy()
@@ -597,4 +325,46 @@ def main():
signal.signal(signal.SIGABRT, app.signal_handler)
signal.signal(signal.SIGPIPE, signal.SIG_IGN)
- app.run() \ No newline at end of file
+ config = get_config_defaults()
+
+ # Get config values from environment variables and commadn line arguments
+ environment_config = get_config_from_environment()
+ argv_config = get_config_from_argv(sys.argv[1:])
+
+ # Merge config values
+ config.update(environment_config)
+ config.update(argv_config)
+
+ # Config file path provided?
+ if 'config' in config and config['config']:
+ config_file_path = os.path.realpath(config['config'])
+
+ else:
+
+ # Directories to scan for config files
+ target_directories = [
+ os.getcwd(), # cwd
+ os.path.dirname(os.path.realpath(__file__)) # script path
+ ]
+
+ config_file_path = find_config_file(target_directories)
+
+ # Config file path provided or found?
+ if config_file_path:
+ file_config = get_config_from_file(config_file_path)
+ config.update(file_config)
+
+ # Extend config data with any repository defined by environment variables
+ repo_config = get_repo_config_from_environment()
+
+ if repo_config:
+
+ if not 'repositories' in config:
+ config['repositories'] = []
+
+ config['repositories'].append(repo_config)
+
+ # Initialize config by expanding with missing values
+ init_config(config)
+
+ app.run(config) \ No newline at end of file