comparison scripts/database/homebrew/set-env-for-setup @ 10:a50cf11e5178

Rewrite LGDataverse completely upgrading to dataverse4.0
author Zoe Hong <zhong@mpiwg-berlin.mpg.de>
date Tue, 08 Sep 2015 17:00:21 +0200
parents
children
comparison
equal deleted inserted replaced
9:5926d6419569 10:a50cf11e5178
1 #!/bin/bash
2 # put these variables into your env with `source path/to/script`
3
4 export GLASSFISH_ROOT='/Applications/NetBeans/glassfish4'
5 export -n GLASSFISH_ROOT
6 unset GLASSFISH_ROOT
7 echo $GLASSFISH_ROOT
8
9 export DB_NAME_CUSTOM='dataverse_db'
10 #export -n DB_NAME_CUSTOM
11 #unset DB_NAME_CUSTOM
12 echo $DB_NAME_CUSTOM
13
14 export DB_USER_CUSTOM='dataverse_app'
15 #export -n DB_USER_CUSTOM
16 #unset DB_USER_CUSTOM
17 echo $DB_USER_CUSTOM
18
19 export DB_PASS_CUSTOM='secret'
20 #export -n DB_PASS_CUSTOM
21 #unset DB_PASS_CUSTOM
22 echo $DB_PASS_CUSTOM