This commit is contained in:
Adam Wilson
2025-05-19 07:00:25 -06:00
parent c6fc422b7c
commit 32bfc1d1e2
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -41,7 +41,7 @@ jobs:
working-directory: ${{ github.workspace }}/src/tools
shell: bash
run: |
curl -i http://localhost:9998/
curl -i http://localhost:9999/
garak -v \
--config ${{ github.workspace }}/src/tools/garak.config.yml \
+2 -2
View File
@@ -21,6 +21,6 @@ if __name__ == '__main__':
logger = logging.Logger(name='Flask API', level=logging.DEBUG)
print('test')
logger.debug('running...')
# Production mode with Waitress:
serve(app, host='0.0.0.0', port=9998)
serve(app, host='0.0.0.0', port=9999)