1.0.0-rc2

{README.md, SnowflakeService.java}: changed port number to stay in bounds
This commit is contained in:
2024-05-20 19:39:49 +02:00
parent 97ee513e21
commit a4fd5312d2
2 changed files with 2 additions and 2 deletions

View File

@@ -22,7 +22,7 @@ This utility uses:
```bash ```bash
docker pull bootmediaalix/snowflakeservice docker pull bootmediaalix/snowflakeservice
docker run bootmediaalix/snowflakeservice -e %{set required .env, see below} -p 95674:95674 -v /data/b00tload-services/snowflake:%desired path on host% docker run bootmediaalix/snowflakeservice -e %{set required .env, see below} -p 9567:9567 -v /data/b00tload-services/snowflake:%desired path on host%
``` ```
### Containerless ### Containerless
A containerless installation is possible, although not supported. For development convenience the application base directory is located in `~/.b00tload-services/snowflake` instead of `/data/b00tload-services/snowflake`. A containerless installation is possible, although not supported. For development convenience the application base directory is located in `~/.b00tload-services/snowflake` instead of `/data/b00tload-services/snowflake`.

View File

@@ -77,7 +77,7 @@ public class SnowflakeService {
ret.addProperty("id", SnowflakeIDGenerator.getInstance().generateID()); ret.addProperty("id", SnowflakeIDGenerator.getInstance().generateID());
ctx.status(200).result(ret.toString()).contentType(ContentType.APPLICATION_JSON); ctx.status(200).result(ret.toString()).contentType(ContentType.APPLICATION_JSON);
})); }));
endpointServer.start(95674); endpointServer.start(9567);
} }
} }