Skip to content

Commit f88c314

Browse files
authored
Merge pull request #12 from soundhive/default-conf-prod
Use prod conf as default conf
2 parents 0b4fb81 + 059834c commit f88c314

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CORE/src/main/java/com/soundhive/core/conf/ConfHandler.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,11 @@ private void writeDefaultConfFile(File file) throws IOException {
8484
writer.write("#This configuration file for SoundHive have been generated automatically. \n"
8585
+ "#Please write one value per line. syntax is the following : key=value;"
8686
+ "#You can set comments using hashtag.\n"
87-
+ "api_base_url=http://localhost:3000/; #URL to access the API \n"
87+
+ "api_base_url=https://api.soundhive.stream/; #URL to access the API \n"
8888
+ "token_directory=./auth/token; #Directory where the JWT file is stored \n"
8989
+ "plugin_ui_dir=./UIPlugins; #Directory where plugins jars are to be found \n"
9090
+ "verbose=soft; # quiet = no logging ; soft = messages logging ; hard = print exceptions stack traces. \n"
91-
+ "minio_url=localhost:9000/soundhive/ #url to the minio server for file management.");
91+
+ "minio_url=https://s3.soundhive.stream/soundhive/; #url to the minio server for file management.");
9292
writer.close();
9393
}
9494

0 commit comments

Comments
 (0)