forked from vaske/stack
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added back accidentally deleted properties file
- Loading branch information
Showing
2 changed files
with
83 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
83 changes: 83 additions & 0 deletions
83
standalone/src/main/resources/usergrid-standalone.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
# | ||
# Usergrid configuration properties | ||
# Loaded by Spring PropertyPlaceholderConfigurer | ||
# | ||
|
||
# | ||
# Do not put installation-specific or confidential | ||
# configuration settings here if you plan to push | ||
# this to GitHub | ||
# | ||
# Put your settings in usergrid-custom-test.properties | ||
# instead. | ||
# | ||
|
||
# Whether to user the remote Cassandra cluster or not | ||
cassandra.use_remote=false | ||
|
||
# URL for local testing Cassandra cluster | ||
cassandra.local.url=localhost:9160 | ||
|
||
# URL for remote production Cassandra cluster | ||
cassandra.remote.url= | ||
|
||
# Name of Cassandra cluster | ||
cassandra.cluster=Test Cluster | ||
|
||
cassandra.username= | ||
cassandra.password= | ||
|
||
usergrid.version.database=1.0.0 | ||
usergrid.version.schema=1.0.0 | ||
usergrid.version.properties=1.0.0 | ||
|
||
# SysAdmin login | ||
usergrid.sysadmin.login.name= | ||
usergrid.sysadmin.login.email= | ||
usergrid.sysadmin.login.password= | ||
usergrid.sysadmin.login.allowed=false | ||
|
||
# Where to store temporary files | ||
usergrid.temp.files=/tmp/usergrid | ||
|
||
# Zookeeper instances | ||
zookeeper.hosts=localhost:2180 | ||
zookeeper.sessionTimeout = 3000 | ||
zookeeper.maxAttempts = 3 | ||
|
||
AWS_ACCESS_KEY_ID= | ||
AWS_ACCESS_KEY_SECRET= | ||
|
||
usergrid.test.sample_data_url= | ||
|
||
mail.transport.protocol= | ||
mail.smtps.host= | ||
mail.smtps.port= | ||
mail.smtps.auth= | ||
mail.smtps.username= | ||
mail.smtps.password= | ||
mail.smtps.quitwait= | ||
|
||
usergrid.organization.activation.url=http://localhost:8080/ROOT/management/organizations/%s/activate | ||
usergrid.admin.activation.url=http://localhost:8080/ROOT/management/users/%s/activate | ||
usergrid.admin.resetpw.url=http://localhost:8080/ROOT/management/users/%s/resetpw | ||
usergrid.user.activation.url=http://localhost:8080/ROOT/%s/users/%s/activate | ||
usergrid.user.resetpw.url=http://localhost:8080/ROOT/%s/users/%s/resetpw | ||
|
||
usergrid.recaptcha.public= | ||
usergrid.recaptcha.private= | ||
|
||
usergrid.sysadmin.email= | ||
usergrid.sysadmin.approve.users=false | ||
usergrid.sysadmin.approve.organizations=false | ||
|
||
usergrid.setup-test-account=true | ||
usergrid.test-account.app=test-app | ||
usergrid.test-account.organization=test-organization | ||
usergrid.test-account.admin-user.username=test | ||
usergrid.test-account.admin-user.name=Test User | ||
usergrid.test-account.admin-user.email=[email protected] | ||
usergrid.test-account.admin-user.password=test | ||
|
||
usergrid.redirect_root= | ||
|