flask-gogs-maker/settings.default.py

17 lines
459 B
Python

''' GogsMaker settings '''
# List of the repositories to work on
HOOKS = [
{
# Name of the repository. This is purely local, and determines the name
# of the directory in which the compilation will happen.
'name': 'foo',
# URL of the repository, as reported by Gogs in its payload.
'url': 'https://git.tobast.fr/tobast/flask-gogs-maker',
# Make targets to be invoked
'targets': ['all'],
},
]