update file storage path

This commit is contained in:
Prince
2026-06-17 15:09:28 +02:00
parent 6ccded7fce
commit 6c3ef60665
3 changed files with 24 additions and 7 deletions

View File

@@ -45,6 +45,8 @@ velocity.api.api-key=Ko7_hAZjDNAqj--VI1kpkgV4D6PsjS6eWWEIgcfhG8M
velocity.api.cancel-url=http://localhost:9005/poll velocity.api.cancel-url=http://localhost:9005/poll
velocity.api.success-url=http://localhost:9005/poll velocity.api.success-url=http://localhost:9005/poll
app.reports.storage-path=./reports
jobrunr.background-job-server.enabled=true jobrunr.background-job-server.enabled=true
jobrunr.dashboard.enabled=true jobrunr.dashboard.enabled=true
jobrunr.dashboard.port=8058 jobrunr.dashboard.port=8058

View File

@@ -81,7 +81,7 @@ jobrunr.datasource.username=sa
jobrunr.datasource.password= jobrunr.datasource.password=
# Batch report storage # Batch report storage
app.reports.storage-path=./reports app.reports.storage-path=/srv/data/reports
app.base-url=https://pay.velocityafrica.net app.base-url=https://pay.velocityafrica.net
zss.sms.api.url=https://secure.zss.co.zw/vportal/cnm/vsms/json/batch zss.sms.api.url=https://secure.zss.co.zw/vportal/cnm/vsms/json/batch

View File

@@ -1,13 +1,28 @@
<?xml version="1.1" encoding="UTF-8" standalone="no"?> <?xml version="1.1" encoding="UTF-8" standalone="no"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" xmlns:pro="http://www.liquibase.org/xml/ns/pro" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-latest.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-latest.xsd"> <databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" xmlns:pro="http://www.liquibase.org/xml/ns/pro" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-latest.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-latest.xsd">
<changeSet author="khoza (generated)" id="1781611630517-3"> <changeSet author="khoza (generated)" id="1781700776654-3">
<addColumn tableName="transaction"> <addColumn tableName="group_batch_item">
<column name="batch_id" type="uuid"/> <column name="bill_client_id" type="varchar(255)"/>
</addColumn> </addColumn>
</changeSet> </changeSet>
<changeSet author="khoza (generated)" id="1781633136006-3"> <changeSet author="khoza (generated)" id="1781700776654-4">
<addColumn tableName="provider"> <addColumn tableName="group_batch_item">
<column name="requires_products" type="boolean"/> <column name="bill_name" type="varchar(255)"/>
</addColumn>
</changeSet>
<changeSet author="khoza (generated)" id="1781700776654-5">
<addColumn tableName="group_batch_item">
<column name="bill_product_name" type="varchar(255)"/>
</addColumn>
</changeSet>
<changeSet author="khoza (generated)" id="1781700776654-6">
<addColumn tableName="group_batch_item">
<column name="provider_image" type="varchar(255)"/>
</addColumn>
</changeSet>
<changeSet author="khoza (generated)" id="1781700776654-7">
<addColumn tableName="group_batch_item">
<column name="provider_label" type="varchar(255)"/>
</addColumn> </addColumn>
</changeSet> </changeSet>
</databaseChangeLog> </databaseChangeLog>