Update year to 2024

Date and location pending confirmation.
This commit is contained in:
Ben Sturmfels 2024-03-12 16:38:02 +11:00
parent eb91004c3f
commit 5f1fc54d6e
Signed by: bsturmfels
GPG key ID: 023C05E2C9C068F0

8
fabfile.py vendored
View file

@ -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',
},
})