Skip to content

Commit

Permalink
Merge pull request #12 from soundhive/default-conf-prod
Browse files Browse the repository at this point in the history
Use prod conf as default conf
  • Loading branch information
angristan authored Jul 21, 2020
2 parents 0b4fb81 + 059834c commit f88c314
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CORE/src/main/java/com/soundhive/core/conf/ConfHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,11 @@ private void writeDefaultConfFile(File file) throws IOException {
writer.write("#This configuration file for SoundHive have been generated automatically. \n"
+ "#Please write one value per line. syntax is the following : key=value;"
+ "#You can set comments using hashtag.\n"
+ "api_base_url=http://localhost:3000/; #URL to access the API \n"
+ "api_base_url=https://api.soundhive.stream/; #URL to access the API \n"
+ "token_directory=./auth/token; #Directory where the JWT file is stored \n"
+ "plugin_ui_dir=./UIPlugins; #Directory where plugins jars are to be found \n"
+ "verbose=soft; # quiet = no logging ; soft = messages logging ; hard = print exceptions stack traces. \n"
+ "minio_url=localhost:9000/soundhive/ #url to the minio server for file management.");
+ "minio_url=https://s3.soundhive.stream/soundhive/; #url to the minio server for file management.");
writer.close();
}

Expand Down

0 comments on commit f88c314

Please sign in to comment.