Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion database/init/02-yaci-store-tables.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-- YACI Store Schema for PostgreSQL
-- Combined from YACI Store 2.0.0-beta5 migration files
-- Combined from YACI Store 2.0.0 migration files
-- This schema is run before the application starts to create all required tables

-- =====================================================
Expand Down
5 changes: 2 additions & 3 deletions dev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,8 @@ JAR_FILE=$(find indexer -name "yaci-store*.jar" -type f 2>/dev/null | head -1)
if [ -z "$JAR_FILE" ]; then
print_warning "YACI Store JAR file not found in indexer/ directory"
print_info "To download:"
print_info " 1. Visit https://github.com/bloxbean/yaci-store/releases"
print_info " 2. Download yaci-store.jar or yaci-store-all-*.jar"
print_info " 3. Place it in the indexer/ directory"
print_info " Visit https://github.com/bloxbean/yaci-store/releases"
print_info " or use /indexer/download-jar.sh"
INDEXER_AVAILABLE=false
else
print_success "YACI Store JAR found: $JAR_FILE"
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ services:
- administration-network

indexer:
image: bloxbean/yaci-store:2.0.0-beta5
image: bloxbean/yaci-store:2.0.0
container_name: administration-indexer
depends_on:
postgres:
Expand Down
2 changes: 1 addition & 1 deletion indexer/Dockerfile.render
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Render-compatible Dockerfile for YACI Store Indexer
FROM bloxbean/yaci-store:2.0.0-beta5
FROM bloxbean/yaci-store:2.0.0

USER root

Expand Down
2 changes: 1 addition & 1 deletion indexer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ ORDER BY slot DESC LIMIT 10;
The indexer uses the official YACI Store Docker image:

```yaml
image: bloxbean/yaci-store:2.0.0-beta5
image: bloxbean/yaci-store:2.0.0
```

Configuration is mounted at `/app/config/application.properties`.
Expand Down
4 changes: 2 additions & 2 deletions indexer/SETUP.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
The YACI Store JAR file needs to be downloaded manually:

1. Visit https://github.com/bloxbean/yaci-store/releases
2. Download the latest `yaci-store-all-*.jar` file (e.g., `yaci-store-all-2.0.0-beta5.jar`)
2. Download the latest `yaci-store-all-*.jar` file (e.g., `yaci-store-all-2.0.0.jar`)
3. Place it in the `indexer/` directory

Alternatively, you can try the download script:
```bash
./download-jar.sh 2.0.0-beta5
./download-jar.sh 2.0.0
```

Note: The script may fail if the release tag format is different. In that case, download manually.
Expand Down
2 changes: 1 addition & 1 deletion indexer/download-jar.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

set -e

VERSION=${1:-"2.0.0-beta5"}
VERSION=${1:-"2.0.0"}
ZIP_FILE="yaci-store-${VERSION}.zip"
JAR_FILE="yaci-store.jar"

Expand Down
2 changes: 1 addition & 1 deletion indexer/init-schema.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-- YACI Store Schema for PostgreSQL
-- Combined from YACI Store 2.0.0-beta5 migration files
-- Combined from YACI Store 2.0.0 migration files
-- This schema is run before the application starts to create all required tables

-- =====================================================
Expand Down
Binary file removed indexer/logs/yaci-store.log.2026-01-28.0.gz
Binary file not shown.