commit
d96debb2a6
@ -0,0 +1,8 @@
|
||||
# Hostname passed to Traefik
|
||||
ADDRESS=setup.mailu.io
|
||||
|
||||
# Current release
|
||||
RELEASE=master
|
||||
|
||||
# Comma separated list of versions the user can choose.
|
||||
VERSIONS=master
|
@ -1,5 +1,4 @@
|
||||
flask
|
||||
flask-bootstrap
|
||||
redis
|
||||
gitpython
|
||||
gunicorn
|
||||
|
@ -1,39 +0,0 @@
|
||||
import git
|
||||
import tempfile
|
||||
import argparse
|
||||
import os
|
||||
import shutil
|
||||
import re
|
||||
|
||||
|
||||
VERSION_BRANCH = re.compile("(master|\d+\.\d+)")
|
||||
|
||||
|
||||
def main(upstream, dest, dev=True):
|
||||
shutil.rmtree(dest, ignore_errors=True)
|
||||
os.makedirs(dest, exist_ok=True)
|
||||
with tempfile.TemporaryDirectory() as clone_path:
|
||||
repo = git.Repo.clone_from(upstream, clone_path)
|
||||
for branch in repo.refs:
|
||||
if not branch.name.startswith("origin/"):
|
||||
continue
|
||||
name = branch.name[len("origin/"):]
|
||||
if not VERSION_BRANCH.match(name):
|
||||
continue
|
||||
branch.checkout()
|
||||
config_path = os.path.join(clone_path, "setup")
|
||||
if os.path.exists(config_path):
|
||||
shutil.copytree(config_path, os.path.join(dest, name))
|
||||
print("Imported branch {}".format(name))
|
||||
if dev:
|
||||
shutil.copytree(".", os.path.join(dest, "dev"))
|
||||
print("Imported dev")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument("--dev", action="store_true", help="Copy the local dir in /dev")
|
||||
parser.add_argument("upstream", help="Path to Mailu git repository")
|
||||
parser.add_argument("dest", help="Destination directory for data files")
|
||||
args = parser.parse_args()
|
||||
main(**vars(args))
|
Loading…
Reference in New Issue