Fix syntax error in app.py bootstrap_database function
ci/woodpecker/push/woodpecker Pipeline failed Details

This commit is contained in:
colin 2025-07-03 13:15:44 -04:00
parent 5f920a7e37
commit e2916aec56
2 changed files with 1 additions and 2 deletions

View File

@ -336,4 +336,4 @@ if __name__ == '__main__':
logger.info(f"Starting Ploughshares v{VERSION}")
bootstrap_database()
port = int(os.environ.get('FLASK_RUN_PORT', 5001))
app.run(host='0.0.0.0', port=port)
app.run(host='0.0.0.0', port=port)

View File

@ -55,7 +55,6 @@ services:
- ploughshares-internal
volumes:
- ploughshares_db_data:/var/lib/postgresql/data
- ./docker/ploughshares/schema.sql:/docker-entrypoint-initdb.d/schema.sql
volumes:
ploughshares_db_data: