From 5f1fc54d6e8e67efd005c82d390e5bfc2102b0d5 Mon Sep 17 00:00:00 2001 From: Ben Sturmfels Date: Tue, 12 Mar 2024 16:38:02 +1100 Subject: [PATCH] Update year to 2024 Date and location pending confirmation. --- fabfile.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fabfile.py b/fabfile.py index 00abc7fd..34075ba7 100644 --- a/fabfile.py +++ b/fabfile.py @@ -18,7 +18,7 @@ hosts = os.environ['FABRIC_HOSTS'].split(',') def install_essentials(c): # ImageMagick (convert) and Inkscape required for generating badges. - c.run('sudo apt-get install -yy git python3-dev python3-venv python3-wheel build-essential python3-cairocffi python3-psycopg2 postgresql uwsgi-emperor uwsgi-plugin-python3 memcached netcat nginx certbot libpq-dev libmemcached-dev libxml2-dev libxslt-dev xmlsec1 imagemagick inkscape cronic') + c.run('sudo apt-get install -yy git python3-dev python3-venv python3-wheel build-essential python3-cairocffi python3-psycopg2 postgresql uwsgi-emperor uwsgi-plugin-python3 memcached netcat-openbsd nginx certbot libpq-dev libmemcached-dev libxml2-dev libxslt-dev xmlsec1 imagemagick inkscape cronic') @task(hosts=hosts) @@ -75,7 +75,7 @@ ns.configure({ # Our custom project config. 'env': { - 'branch': 'fossy2023', + 'branch': 'fossy2024', 'app_user': 'www-data', 'db_name': 'symposion', 'project_dir': '/srv/symposion_app', @@ -87,7 +87,7 @@ ns.configure({ 'uwsgi_conf': 'deploy/uwsgi.ini', 'nginx_conf': 'deploy/nginx.conf', 'python': '/usr/bin/python3.11', - 'url': 'https://2023.fossy.us/', - 'domain': '2023.fossy.us', + 'url': 'https://2024.fossy.us/', + 'domain': '2024.fossy.us', }, })